summaryrefslogtreecommitdiffstats
path: root/nova/utils.py
diff options
context:
space:
mode:
authorPeng Yong <ppyy@pubyun.com>2012-05-01 23:21:47 +0800
committerPeng Yong <ppyy@pubyun.com>2012-05-01 23:21:47 +0800
commit08403e5be89122c3d0e20a59f7f7f68d6377a5fa (patch)
tree7cfd72d63125d901c26ffb3b9e8eaf1d9081d555 /nova/utils.py
parentfb58a57af6c9e88cc1696378fbd4bb72307bcbcb (diff)
adjust logging levels for utils.py
Change-Id: I6547d61a32bcd8518aa350eb8fad833a1612b692
Diffstat (limited to 'nova/utils.py')
-rw-r--r--nova/utils.py4
1 files changed, 2 insertions, 2 deletions
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):