Fix logging for the mesh component (#1145)

This commit is contained in:
pasquier-s 2017-12-14 16:05:59 +01:00 committed by stuart nelson
parent 7736ea0f61
commit 06f9a4ad1d
1 changed files with 1 additions and 1 deletions

View File

@ -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) {