We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dacf342 + 0625c1f commit 7de5566Copy full SHA for 7de5566
src/api-engine/api/lib/agent/handler.py
@@ -45,6 +45,7 @@ def create(self, info):
45
else:
46
return None
47
except Exception as e:
48
+ LOG.error("Agent Not Created", exc_info=True)
49
raise e
50
51
def delete(self):
@@ -71,5 +72,5 @@ def get(self):
71
72
try:
73
return self._agent.get()
74
- LOG.error(e)
75
+ LOG.error("Agent Not Found: %s", e, exc_info=True)
76
return False
0 commit comments