fix(logging): change log level to trace for plugin proxy logging call, fixes #5126

This commit is contained in:
Torkel Ödegaard 2016-05-23 07:55:55 +02:00
parent e6f251011f
commit 43ba563a1c

View File

@ -88,7 +88,7 @@ func NewApiPluginProxy(ctx *middleware.Context, proxyPath string, route *plugins
}
for key, value := range headers {
log.Info("setting key %v value %v", key, value[0])
log.Trace("setting key %v value %v", key, value[0])
req.Header.Set(key, value[0])
}
}