// serverErrorf logs the provided error and returns an error that should be returned by // the RPC endpoint method. func (s *adminServer) serverErrorf(format string, args ...interface{}) error { log.ErrorfDepth(context.TODO(), 1, format, args...) return errAdminAPIError }
// serverErrors logs the provided errors and returns an error that should be returned by // the RPC endpoint method. func (s *adminServer) serverErrors(errors []error) error { log.ErrorfDepth(context.TODO(), 1, "%v", errors) return errAdminAPIError }
// serverError logs the provided error and returns an error that should be returned by // the RPC endpoint method. func (s *adminServer) serverError(err error) error { log.ErrorfDepth(context.TODO(), 1, "%s", err) return errAdminAPIError }
func (r *raftLogger) Errorf(format string, v ...interface{}) { log.ErrorfDepth(r.ctx, 1, format, v...) }
func (r *raftLogger) Error(v ...interface{}) { log.ErrorfDepth(r.ctx, 1, "", v...) }
func (r *raftLogger) Panicf(format string, v ...interface{}) { log.ErrorfDepth(r.ctx, 1, format, v...) panic(fmt.Sprintf(format, v...)) }
func (r *raftLogger) Panic(v ...interface{}) { s := fmt.Sprint(v...) log.ErrorfDepth(r.ctx, 1, s) panic(s) }