Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Commit

Permalink
chore(jaeger): fix usage of wrong error log function
Browse files Browse the repository at this point in the history
  • Loading branch information
tongpu committed Aug 19, 2024
1 parent 9ee6897 commit bfc12da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/jaeger/log/logrus.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func NewLogrusAdapter(logger *log.Logger) *logrusAdapter {
}

func (l *logrusAdapter) Error(msg string) {
l.logger.Errorf(msg)
l.logger.Error(msg)
}

func (l *logrusAdapter) Infof(msg string, args ...interface{}) {
Expand Down

0 comments on commit bfc12da

Please sign in to comment.