Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request #1068 from bcwaldon/fix-log-warning
Browse files Browse the repository at this point in the history
log: fix impl of Warning
  • Loading branch information
bcwaldon committed Dec 17, 2014
2 parents 5a8f579 + 11bd675 commit 1b9073c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func Errorf(format string, v ...interface{}) {
logger.Output(calldepth, header("ERROR", fmt.Sprintf(format, v...)))
}

func Warning(format string, v ...interface{}) {
func Warning(v ...interface{}) {
logger.Output(calldepth, header("WARN", fmt.Sprint(v...)))
}

Expand Down

0 comments on commit 1b9073c

Please sign in to comment.