From: bep Date: Fri, 3 Apr 2015 19:16:36 +0000 (+0200) Subject: Return early from DistinctErrorLogger's Printf X-Git-Tag: v0.14~145 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bea5feb3;p=brevno-suite%2Fhugo Return early from DistinctErrorLogger's Printf --- diff --git a/helpers/general.go b/helpers/general.go index cf87c04b..48e7dbd0 100644 --- a/helpers/general.go +++ b/helpers/general.go @@ -162,11 +162,12 @@ type DistinctErrorLogger struct { func (l *DistinctErrorLogger) Printf(format string, v ...interface{}) { logStatement := fmt.Sprintf(format, v...) l.RLock() - logged := l.m[logStatement] - l.RUnlock() - if logged { + if l.m[logStatement] { + l.RUnlock() return } + l.RUnlock() + l.Lock() if !l.m[logStatement] { jww.ERROR.Print(logStatement)