Skip to content

Commit

Permalink
chore: use errors.New instead of format function without args for err…
Browse files Browse the repository at this point in the history
…or (#1134)
  • Loading branch information
sashamelentyev committed Jul 21, 2022
1 parent 2cfc92c commit e3a10fc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions config.go
Expand Up @@ -21,7 +21,7 @@
package zap

import (
"fmt"
"errors"
"sort"
"time"

Expand Down Expand Up @@ -182,7 +182,7 @@ func (cfg Config) Build(opts ...Option) (*Logger, error) {
}

if cfg.Level == (AtomicLevel{}) {
return nil, fmt.Errorf("missing Level")
return nil, errors.New("missing Level")
}

log := New(
Expand Down
2 changes: 1 addition & 1 deletion encoder.go
Expand Up @@ -63,7 +63,7 @@ func RegisterEncoder(name string, constructor func(zapcore.EncoderConfig) (zapco

func newEncoder(name string, encoderConfig zapcore.EncoderConfig) (zapcore.Encoder, error) {
if encoderConfig.TimeKey != "" && encoderConfig.EncodeTime == nil {
return nil, fmt.Errorf("missing EncodeTime in EncoderConfig")
return nil, errors.New("missing EncodeTime in EncoderConfig")
}

_encoderMutex.RLock()
Expand Down
5 changes: 3 additions & 2 deletions http_handler.go
Expand Up @@ -22,6 +22,7 @@ package zap

import (
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
Expand Down Expand Up @@ -108,7 +109,7 @@ func decodePutRequest(contentType string, r *http.Request) (zapcore.Level, error
func decodePutURL(r *http.Request) (zapcore.Level, error) {
lvl := r.FormValue("level")
if lvl == "" {
return 0, fmt.Errorf("must specify logging level")
return 0, errors.New("must specify logging level")
}
var l zapcore.Level
if err := l.UnmarshalText([]byte(lvl)); err != nil {
Expand All @@ -125,7 +126,7 @@ func decodePutJSON(body io.Reader) (zapcore.Level, error) {
return 0, fmt.Errorf("malformed request body: %v", err)
}
if pld.Level == nil {
return 0, fmt.Errorf("must specify logging level")
return 0, errors.New("must specify logging level")
}
return *pld.Level, nil

Expand Down

0 comments on commit e3a10fc

Please sign in to comment.