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

Commit

Permalink
log: fix impl of Warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bcwaldon committed Dec 16, 2014
1 parent 5a8f579 commit 11bd675
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 11bd675

Please sign in to comment.