From 3719c88c8ff93f001ad5f0c8e0e377130af4c71f Mon Sep 17 00:00:00 2001 From: Sarah Adams Date: Tue, 25 Mar 2014 22:51:40 -0700 Subject: [PATCH] code builds -- fixes incorrect use of entry.Info, change to entry.Infof --- entry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entry.go b/entry.go index 863e89d..f0e5f76 100644 --- a/entry.go +++ b/entry.go @@ -141,7 +141,7 @@ func (entry *Entry) Infof(format string, args ...interface{}) { } func (entry *Entry) Printf(format string, args ...interface{}) { - entry.Info(format, args...) + entry.Infof(format, args...) } func (entry *Entry) Warnf(format string, args ...interface{}) {