From 11a9ddab081e0410eca69f16cd2b02079b9c8857 Mon Sep 17 00:00:00 2001 From: Simon Eskildsen Date: Sat, 3 May 2014 20:42:28 -0400 Subject: [PATCH] entry: remove duplicate hook for debug level --- entry.go | 1 - 1 file changed, 1 deletion(-) diff --git a/entry.go b/entry.go index 27aa967..c38898c 100644 --- a/entry.go +++ b/entry.go @@ -85,7 +85,6 @@ func (entry *Entry) log(level string, levelInt Level, msg string) string { func (entry *Entry) Debug(args ...interface{}) { if entry.Logger.Level >= Debug { entry.log("debug", Debug, fmt.Sprint(args...)) - entry.Logger.Hooks.Fire(Debug, entry) } }