Ver código fonte

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

Signed-off-by: Mihaela Balutoiu <mbalutoiu@cloudbasesolutions.com>
Mihaela Balutoiu 2 anos atrás
pai
commit
aad19d573c
1 arquivos alterados com 1 adições e 1 exclusões
  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