Merge pull request #12 from Sproutling/master

code builds -- fixes incorrect use of entry.Info, change to entry.Infof
This commit is contained in:
Simon Eskildsen 2014-03-26 09:06:28 -04:00
commit 856b995d46
1 changed files with 1 additions and 1 deletions

View File

@ -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{}) {