Server Upgrade: use debug log level for upgrade instead of info

Upgrade contains too many unnecessary info logs.

Reviewed-By: Jan Cholasta <jcholast@redhat.com>
This commit is contained in:
Martin Basti
2015-06-08 17:33:11 +02:00
committed by Jan Cholasta
parent 66ea322e7e
commit 884afb5d38
8 changed files with 40 additions and 40 deletions

View File

@@ -152,7 +152,7 @@ class update_idrange_baserid(Updater):
for entry in entries:
entry['ipabaserid'] = 0
try:
root_logger.info("Updating existing idrange: %s" % (entry.dn))
root_logger.debug("Updating existing idrange: %s" % (entry.dn))
ldap.update_entry(entry)
root_logger.info("Done")
except (errors.EmptyModlist, errors.NotFound):