Skip to content

Commit

Permalink
Change logger path
Browse files Browse the repository at this point in the history
  • Loading branch information
remg1997 committed May 16, 2024
1 parent 8ee7e04 commit e8d5638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/worker/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
@after_setup_logger.connect
def setup_loggers(logger, *args, **kwargs):
formatter = logging.Formatter("%(message)s")
fh = logging.FileHandler("adversarial_nibbler.log")
fh = logging.FileHandler("worker/adversarial_nibbler.log")
fh.setFormatter(formatter)
fh.setLevel(logging.CRITICAL)
logger.addHandler(fh)
Expand Down

0 comments on commit e8d5638

Please sign in to comment.