From 08403e5be89122c3d0e20a59f7f7f68d6377a5fa Mon Sep 17 00:00:00 2001 From: Peng Yong Date: Tue, 1 May 2012 23:21:47 +0800 Subject: adjust logging levels for utils.py Change-Id: I6547d61a32bcd8518aa350eb8fad833a1612b692 --- nova/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nova/utils.py') diff --git a/nova/utils.py b/nova/utils.py index 71e734e8b..231942a74 100644 --- a/nova/utils.py +++ b/nova/utils.py @@ -1116,7 +1116,7 @@ def parse_server_string(server_str): return (address, port) except Exception: - LOG.debug(_('Invalid server_string: %s'), server_str) + LOG.error(_('Invalid server_string: %s'), server_str) return ('', '') @@ -1628,7 +1628,7 @@ def tempdir(**kwargs): try: shutil.rmtree(tmpdir) except OSError, e: - LOG.debug(_('Could not remove tmpdir: %s'), str(e)) + LOG.error(_('Could not remove tmpdir: %s'), str(e)) def strcmp_const_time(s1, s2): -- cgit