Skip to content

Commit

Permalink
fix : bug due to commit : [50178fa]
Browse files Browse the repository at this point in the history
  • Loading branch information
pur1fying committed Jun 2, 2024
1 parent 288ddca commit fb84653
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/Baas_thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def _init_emulator(self) -> bool:
self.logger.info("--------Emulator Init Finished----------")
return True
except Exception as e:
self.logger.error(e)
self.logger.error(e.__str__())
self.logger.error("Emulator initialization failed")
return False

Expand Down
2 changes: 1 addition & 1 deletion module/rewarded_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def implement(self):
elif res == "0SWEEPABLE":
self.logger.warning("0 SWEEPABLE")

self.logger.info(self.rewarded_task_status)
self.logger.info("Rewarded task status : " + self.rewarded_task_status.__str__())
return True


Expand Down

0 comments on commit fb84653

Please sign in to comment.