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{}) {
|
||||
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)
|
||||
|
|
Loading…
Reference in a new issue