Jeff saves the day

This commit is contained in:
binwiederhier 2023-02-09 19:45:02 -05:00
parent dc77efc31a
commit 057c4a3239
2 changed files with 14 additions and 14 deletions

View file

@ -197,9 +197,9 @@ func (e *Event) shouldLog(l Level) bool {
}
func (e *Event) globalLevelWithOverride() Level {
mu.Lock()
mu.RLock()
l, ov := level, overrides
mu.Unlock()
mu.RUnlock()
if e.fields == nil {
return l
}
@ -217,9 +217,9 @@ func (e *Event) globalLevelWithOverride() Level {
}
func (e *Event) maybeApplyContexters() bool {
mu.Lock()
mu.RLock()
hasOverrides := len(overrides) > 0
mu.Unlock()
mu.RUnlock()
if hasOverrides {
e.applyContexters()
}