Browse Source

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

Signed-off-by: Mihaela Balutoiu <mbalutoiu@cloudbasesolutions.com>
Mihaela Balutoiu 2 năm trước cách đây
mục cha
commit
aad19d573c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      coriolis/keystone.py

+ 1 - 1
coriolis/keystone.py

@@ -95,7 +95,7 @@ def delete_trust(ctxt):
         try:
             client.trusts.delete(ctxt.trust_id)
         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