From ce61e9fc54db1de70945fbe447d2ace2ed2b068f Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Sat, 30 Sep 2017 02:08:01 -0400 Subject: [PATCH] Reduce log severity of not-unexpected nodeup log message --- nodeup/pkg/distros/identify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodeup/pkg/distros/identify.go b/nodeup/pkg/distros/identify.go index e64227c880..feeb4979fb 100644 --- a/nodeup/pkg/distros/identify.go +++ b/nodeup/pkg/distros/identify.go @@ -37,7 +37,7 @@ func FindDistribution(rootfs string) (Distribution, error) { return DistributionXenial, nil } } - glog.Warningf("unhandled lsb-release info %q", string(lsbRelease)) + glog.Infof("could not determine OS from lsb-release info %q", string(lsbRelease)) } else if !os.IsNotExist(err) { glog.Warningf("error reading /etc/lsb-release: %v", err) }