Tone down initial auto upgrade warning

This commit is contained in:
Jakob Borg 2014-09-30 17:38:12 +02:00
parent 2091e12e82
commit 25345f08e7
1 changed files with 3 additions and 1 deletions

View File

@ -1182,7 +1182,9 @@ func autoUpgrade() {
rel, err := upgrade.LatestRelease(strings.Contains(Version, "-beta"))
if err != nil {
l.Warnln("Automatic upgrade:", err)
// Don't complain too loudly here; we might simply not have
// internet connectivity, or the upgrade server might be down.
l.Infoln("Automatic upgrade:", err)
continue
}