mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-04 13:47:36 +03:00
Jeff saves the day
This commit is contained in:
parent
dc77efc31a
commit
057c4a3239
2 changed files with 14 additions and 14 deletions
|
@ -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()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue