Skip to content

Commit

Permalink
Revert "UB-1433: fixed warning log (#226)"
Browse files Browse the repository at this point in the history
This reverts commit 0246249.
  • Loading branch information
olgashtivelman committed Jul 24, 2018
1 parent 0246249 commit a815fb9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions utils/logs/go_logging_logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ func (l *goLoggingLogger) ErrorRet(err error, str string, args ...Args) error {
}

func (l *goLoggingLogger) Warning(str string, args ...Args) {
goid_context_string := l.getContextStringFromGoid()
l.logger.Warning(fmt.Sprintf("[%s] %s %v", goid_context_string, str, args))
l.logger.Warning(str+" %v", args)
}

func (l *goLoggingLogger) Trace(level Level, args ...Args) func() {
Expand Down

0 comments on commit a815fb9

Please sign in to comment.