Commit a07d90d3 authored by vyzo's avatar vyzo

downgrade Error log for loggable formatting

not really an error, it doesn't stop us from logging.
parent f7ccd978
......@@ -41,7 +41,7 @@ func tryFormatLoggableKey(k string) (string, error) {
func loggableKey(k string) logging.LoggableMap {
newKey, err := tryFormatLoggableKey(k)
if err != nil {
log.Error(err)
log.Debug(err)
} else {
k = newKey
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment