소스 검색

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:
             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