projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99a18b2
)
Return early from DistinctErrorLogger's Printf
author
bep
<bjorn.erik.pedersen@gmail.com>
Fri, 3 Apr 2015 19:16:36 +0000
(21:16 +0200)
committer
bep
<bjorn.erik.pedersen@gmail.com>
Fri, 3 Apr 2015 19:16:32 +0000
(21:16 +0200)
helpers/general.go
patch
|
blob
|
history
diff --git
a/helpers/general.go
b/helpers/general.go
index cf87c04b1f0ac31c5f104be82c9aed417af0f6ba..48e7dbd01a80c63ae8900167af54516dc574def9 100644
(file)
--- 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)