Modify log message from Error to Warning level

This commit is contained in:
Calum Lind 2011-11-22 03:15:42 +00:00
parent 05f30b58c1
commit a50c83c284

View File

@ -463,7 +463,7 @@ what is currently in the config and it could not convert the value
log.debug("Backing up old config file to %s~", filename)
shutil.move(filename, filename + "~")
except Exception, e:
log.error("Error backing up old config..")
log.warning("Unable to backup old config...")
# The new config file has been written successfully, so let's move it over
# the existing one.