Skip to content

Commit

Permalink
Fix log options messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
iegomez committed May 17, 2019
1 parent 3278710 commit b886ec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions go-auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ func AuthPluginInit(keys []string, values []string, authOptsNum int) {
case "panic":
commonData.LogLevel = log.PanicLevel
default:
log.Info("log_level not set or unkwown, using default info level")
log.Info("log_level unkwown, using default info level")
}

}
Expand All @@ -166,7 +166,7 @@ func AuthPluginInit(keys []string, values []string, authOptsNum int) {
}
}
default:
log.Info("log_dest not set or unknown, using default stderr")
log.Info("log_dest unknown, using default stderr")
}
}

Expand Down

0 comments on commit b886ec3

Please sign in to comment.