Skip to content

Commit

Permalink
Fix: log level mistake (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
Loyalsoldier authored May 4, 2021
1 parent 2c58592 commit 534d71a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions log/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,15 @@ func Info(v ...interface{}) {
}

func Infof(format string, v ...interface{}) {
logger.Warnf(format, v...)
logger.Infof(format, v...)
}

func Debug(v ...interface{}) {
logger.Debug(v...)
}

func Debugf(format string, v ...interface{}) {
logger.Warnf(format, v...)
logger.Debugf(format, v...)
}

func Trace(v ...interface{}) {
Expand Down

0 comments on commit 534d71a

Please sign in to comment.