Skip to content
This repository has been archived by the owner on Mar 12, 2022. It is now read-only.

Commit

Permalink
fix: wrong logging file name (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
sharknoon committed Sep 29, 2021
1 parent a8f3485 commit 9f81e26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions primelooter.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
format="%(asctime)s [%(levelname)s] %(message)s",
datefmt='%Y-%m-%d %H:%M:%S',
handlers=[
logging.FileHandler("impfbot.log"),
logging.FileHandler("primelooter.log"),
logging.StreamHandler(sys.stdout)
]
)
Expand Down Expand Up @@ -305,4 +305,4 @@ def read_cookiefile(path: str) -> typing.List[Cookie]:
log.error("Error %s", ex)
traceback.print_tb(ex.__traceback__)
raise ex


0 comments on commit 9f81e26

Please sign in to comment.