瀏覽代碼

Fix log message level for the `keystone.py` module

Signed-off-by: Mihaela Balutoiu <mbalutoiu@cloudbasesolutions.com>
Mihaela Balutoiu 2 年之前
父節點
當前提交
aad19d573c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      coriolis/keystone.py

+ 1 - 1
coriolis/keystone.py

@@ -95,7 +95,7 @@ def delete_trust(ctxt):
         try:
         try:
             client.trusts.delete(ctxt.trust_id)
             client.trusts.delete(ctxt.trust_id)
         except ks_exceptions.NotFound:
         except ks_exceptions.NotFound:
-            LOG.debug("Trust id not found: %s", ctxt.trust_id)
+            LOG.warn("Trust id not found: %s", ctxt.trust_id)
         ctxt.trust_id = None
         ctxt.trust_id = None