Fix logging for the mesh component (#1145)
This commit is contained in:
parent
7736ea0f61
commit
06f9a4ad1d
|
@ -465,7 +465,7 @@ type printfLogger struct {
|
|||
}
|
||||
|
||||
func (l printfLogger) Printf(f string, args ...interface{}) {
|
||||
level.Debug(l).Log(fmt.Sprintf(f, args...))
|
||||
level.Debug(l).Log("msg", fmt.Sprintf(f, args...))
|
||||
}
|
||||
|
||||
func extURL(listen, external string) (*url.URL, error) {
|
||||
|
|
Loading…
Reference in New Issue