mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Return early from DistinctErrorLogger's Printf
This commit is contained in:
parent
99a18b21fc
commit
bea5feb34d
1 changed files with 4 additions and 3 deletions
|
@ -162,11 +162,12 @@ type DistinctErrorLogger struct {
|
||||||
func (l *DistinctErrorLogger) Printf(format string, v ...interface{}) {
|
func (l *DistinctErrorLogger) Printf(format string, v ...interface{}) {
|
||||||
logStatement := fmt.Sprintf(format, v...)
|
logStatement := fmt.Sprintf(format, v...)
|
||||||
l.RLock()
|
l.RLock()
|
||||||
logged := l.m[logStatement]
|
if l.m[logStatement] {
|
||||||
l.RUnlock()
|
l.RUnlock()
|
||||||
if logged {
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
l.RUnlock()
|
||||||
|
|
||||||
l.Lock()
|
l.Lock()
|
||||||
if !l.m[logStatement] {
|
if !l.m[logStatement] {
|
||||||
jww.ERROR.Print(logStatement)
|
jww.ERROR.Print(logStatement)
|
||||||
|
|
Loading…
Reference in a new issue