From: Sebastien Douheret Date: Tue, 12 Dec 2017 11:12:28 +0000 (+0100) Subject: Adapt early logging level of HTTP client. X-Git-Tag: v0.1.2~1 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fxds%2Fxds-cli.git;a=commitdiff_plain;h=63e37a1f02638525e6261a1aaecb51df3504639c Adapt early logging level of HTTP client. --- diff --git a/main.go b/main.go index bf03375..2d0c179 100644 --- a/main.go +++ b/main.go @@ -320,6 +320,11 @@ func XdsConnInit(ctx *cli.Context) error { serverURL = "http://" + serverURL } + lvl := common.HTTPLogLevelWarning + if Log.Level == logrus.DebugLevel { + lvl = common.HTTPLogLevelDebug + } + // Create HTTP client Log.Debugln("Connect HTTP client on ", agentURL) conf := common.HTTPClientConfig{ @@ -328,7 +333,7 @@ func XdsConnInit(ctx *cli.Context) error { CsrfDisable: true, LogOut: Log.Out, LogPrefix: "XDSAGENT: ", - LogLevel: common.HTTPLogLevelDebug, + LogLevel: lvl, } HTTPCli, err = common.HTTPNewClient(agentURL, conf)