Skip to content

Commit 5c59b95

Browse files
committed
Missed a .error() to .exception() convert
Signed-off-by: jaimukund bhan <[email protected]>
1 parent 2bc26e5 commit 5c59b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api-engine/api/lib/agent/docker/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def restart(self, *args, **kwargs):
8989
else:
9090
raise response.reason
9191
except Exception as e:
92-
LOG.error("DockerAgent Not Restarted", exc_info=True)
92+
LOG.exception("DockerAgent Not Restarted")
9393
raise e
9494

9595
def stop(self, *args, **kwargs):

0 commit comments

Comments
 (0)