Skip to content

Commit a7613b2

Browse files
authored
JSON Encoder: Don't panic if EncodeLevel unset (#1058)
The JSON Encoder currently panics during EncodeEntry if the EncodeLevel option is unset. Fix this by adding a nil check for it. This mirrors the behavior of the Console Encoder.
1 parent a1155d9 commit a7613b2

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

zapcore/json_encoder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ func (enc *jsonEncoder) EncodeEntry(ent Entry, fields []Field) (*buffer.Buffer,
364364
final := enc.clone()
365365
final.buf.AppendByte('{')
366366

367-
if final.LevelKey != "" {
367+
if final.LevelKey != "" && final.EncodeLevel != nil {
368368
final.addKey(final.LevelKey)
369369
cur := final.buf.Len()
370370
final.EncodeLevel(ent.Level, final)

zapcore/json_encoder_test.go

+29
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,35 @@ func TestJSONEncodeEntry(t *testing.T) {
136136
}
137137
}
138138

139+
func TestNoEncodeLevelSupplied(t *testing.T) {
140+
enc := zapcore.NewJSONEncoder(zapcore.EncoderConfig{
141+
MessageKey: "M",
142+
LevelKey: "L",
143+
TimeKey: "T",
144+
NameKey: "N",
145+
CallerKey: "C",
146+
FunctionKey: "F",
147+
StacktraceKey: "S",
148+
EncodeTime: zapcore.ISO8601TimeEncoder,
149+
EncodeDuration: zapcore.SecondsDurationEncoder,
150+
EncodeCaller: zapcore.ShortCallerEncoder,
151+
})
152+
153+
ent := zapcore.Entry{
154+
Level: zapcore.InfoLevel,
155+
Time: time.Date(2018, 6, 19, 16, 33, 42, 99, time.UTC),
156+
LoggerName: "bob",
157+
Message: "lob law",
158+
}
159+
160+
fields := []zapcore.Field{
161+
zap.Int("answer", 42),
162+
}
163+
164+
_, err := enc.EncodeEntry(ent, fields)
165+
assert.NoError(t, err, "Unexpected JSON encoding error.")
166+
}
167+
139168
func TestJSONEmptyConfig(t *testing.T) {
140169
tests := []struct {
141170
name string

0 commit comments

Comments
 (0)