Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
clean unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
felix committed Sep 19, 2019
1 parent e255bd4 commit 6acff20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnes/service/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def _run(self, ctx):
except ComponentNotLoad:
self.logger.error('component can not be correctly loaded, terminated')
except Exception as e:
self.logger.error("exception occured", exc_info=True)
self.logger.error("exception occured: %s" % str(e), exc_info=True)
finally:
self.is_ready.set()
self.is_event_loop.clear()
Expand Down

0 comments on commit 6acff20

Please sign in to comment.