Skip to content

Commit

Permalink
Fixing typo in info log level (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
magdyamr542 authored Aug 7, 2023
1 parent 358cd83 commit e1aecc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/logging/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func (l *StandardLogger) SetLevel(level string) {
l.logger.SetLevel(logrus.ErrorLevel)
case "warn", "warning":
l.logger.SetLevel(logrus.WarnLevel)
case "info'":
case "info":
l.logger.SetLevel(logrus.InfoLevel)
case "debug":
l.logger.SetLevel(logrus.DebugLevel)
Expand Down

0 comments on commit e1aecc3

Please sign in to comment.