Skip to content

Commit eae3743

Browse files
authored
Logger, SugaredLogger: Add Level method (#1148)
Add a `Level() Level` method on Logger and SugaredLogger that reports the current minimum enabled log level for the logger. This relies on the zapcore.LevelOf function added in #1147. Resolves #1144 Depends on #1147
1 parent 0d6a75b commit eae3743

File tree

4 files changed

+70
-0
lines changed

4 files changed

+70
-0
lines changed

logger.go

+7
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,13 @@ func (log *Logger) With(fields ...Field) *Logger {
183183
return l
184184
}
185185

186+
// Level reports the minimum enabled level for this logger.
187+
//
188+
// For NopLoggers, this is [zapcore.InvalidLevel].
189+
func (log *Logger) Level() zapcore.Level {
190+
return zapcore.LevelOf(log.core)
191+
}
192+
186193
// Check returns a CheckedEntry if logging a message at the specified level
187194
// is enabled. It's a completely optional optimization; in high-performance
188195
// applications, Check can help avoid allocating a slice to hold fields.

logger_test.go

+27
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,33 @@ func TestLoggerAtomicLevel(t *testing.T) {
8383
})
8484
}
8585

86+
func TestLoggerLevel(t *testing.T) {
87+
levels := []zapcore.Level{
88+
DebugLevel,
89+
InfoLevel,
90+
WarnLevel,
91+
ErrorLevel,
92+
DPanicLevel,
93+
PanicLevel,
94+
FatalLevel,
95+
}
96+
97+
for _, lvl := range levels {
98+
lvl := lvl
99+
t.Run(lvl.String(), func(t *testing.T) {
100+
t.Parallel()
101+
102+
core, _ := observer.New(lvl)
103+
log := New(core)
104+
assert.Equal(t, lvl, log.Level())
105+
})
106+
}
107+
108+
t.Run("Nop", func(t *testing.T) {
109+
assert.Equal(t, zapcore.InvalidLevel, NewNop().Level())
110+
})
111+
}
112+
86113
func TestLoggerInitialFields(t *testing.T) {
87114
fieldOpts := opts(Fields(Int("foo", 42), String("bar", "baz")))
88115
withLogger(t, DebugLevel, fieldOpts, func(logger *Logger, logs *observer.ObservedLogs) {

sugar.go

+7
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,13 @@ func (s *SugaredLogger) With(args ...interface{}) *SugaredLogger {
114114
return &SugaredLogger{base: s.base.With(s.sweetenFields(args)...)}
115115
}
116116

117+
// Level reports the minimum enabled level for this logger.
118+
//
119+
// For NopLoggers, this is [zapcore.InvalidLevel].
120+
func (s *SugaredLogger) Level() zapcore.Level {
121+
return zapcore.LevelOf(s.base.core)
122+
}
123+
117124
// Debug uses fmt.Sprint to construct and log a message.
118125
func (s *SugaredLogger) Debug(args ...interface{}) {
119126
s.log(DebugLevel, "", args, nil)

sugar_test.go

+29
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,35 @@ func TestSugarWith(t *testing.T) {
139139
}
140140
}
141141

142+
func TestSugaredLoggerLevel(t *testing.T) {
143+
levels := []zapcore.Level{
144+
DebugLevel,
145+
InfoLevel,
146+
WarnLevel,
147+
ErrorLevel,
148+
DPanicLevel,
149+
PanicLevel,
150+
FatalLevel,
151+
}
152+
153+
for _, lvl := range levels {
154+
lvl := lvl
155+
t.Run(lvl.String(), func(t *testing.T) {
156+
t.Parallel()
157+
158+
core, _ := observer.New(lvl)
159+
log := New(core).Sugar()
160+
assert.Equal(t, lvl, log.Level())
161+
})
162+
}
163+
164+
t.Run("Nop", func(t *testing.T) {
165+
t.Parallel()
166+
167+
assert.Equal(t, zapcore.InvalidLevel, NewNop().Sugar().Level())
168+
})
169+
}
170+
142171
func TestSugarFieldsInvalidPairs(t *testing.T) {
143172
withSugar(t, DebugLevel, nil, func(logger *SugaredLogger, logs *observer.ObservedLogs) {
144173
logger.With(42, "foo", []string{"bar"}, "baz").Info("")

0 commit comments

Comments
 (0)