Make logging of backup info level

This commit is contained in:
Joshua Harlow 2012-03-26 22:35:16 -07:00
parent 1d7f41ccec
commit adf5b744e6
2 changed files with 2 additions and 2 deletions
devstack/components

@ -226,7 +226,7 @@ class KeystoneRuntime(comp.PythonRuntime):
def _backup_key_init(self, src_fn, env):
tgt_fn = utils.make_backup_fn(src_fn)
LOG.debug("Moving %r to %r since we successfully initialized keystone.", src_fn, tgt_fn)
LOG.info("Moving %r to %r since we successfully initialized keystone.", src_fn, tgt_fn)
sh.move(src_fn, tgt_fn)
add_lines = list()
add_lines.append('')

@ -365,7 +365,7 @@ class NovaRuntime(NovaMixin, comp.PythonRuntime):
def _backup_network_init(self, src_fn, env):
tgt_fn = utils.make_backup_fn(src_fn)
LOG.debug("Moving %r to %r since we successfully initialized nova's network.", src_fn, tgt_fn)
LOG.info("Moving %r to %r since we successfully initialized nova's network.", src_fn, tgt_fn)
sh.move(src_fn, tgt_fn)
add_lines = list()
add_lines.append('')