Skip to content

Commit

Permalink
fix logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Fluder-Paradyne committed Nov 30, 2023
1 parent 648b293 commit f8ce91d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superagi/lib/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ def debug(self, message, *args):
self.logger.debug(*args)

def info(self, message, *args):
self.#logger.info(message)
self.logger.info(message)
if args:
self.#logger.info(*args)
self.logger.info(*args)

def warning(self, message, *args):
self.logger.warning(message)
Expand Down

0 comments on commit f8ce91d

Please sign in to comment.