fix logpath for real 2

This commit is contained in:
Lukas 2021-09-27 13:32:38 +02:00
parent 954593258c
commit 82053e8131
2 changed files with 2 additions and 2 deletions

View File

@ -481,7 +481,7 @@ class TSbot:
def main():
# Start logger
logpath = os.path.dirname(os.path.abspath(__file__)) + r"\log"
logpath = os.path.dirname(os.path.abspath(__file__)) + r"/log"
log = util.setupLogger(logpath)
# Log unhandled exception

View File

@ -66,7 +66,7 @@ def setupLogger(logpath, lvl="DEBUG"):
log = logging.getLogger()
if not os.path.exists(logpath):
os.makedirs(logpath)
handler = RotatingFileHandler(logpath + r"\myTS3.log", encoding='utf-8', maxBytes=5*1024*1024, backupCount=10)
handler = RotatingFileHandler(logpath + r"/myTS3.log", encoding='utf-8', maxBytes=5*1024*1024, backupCount=10)
logformat = logging.Formatter("%(asctime)s %(levelname)7s %(message)s", "%Y-%m-%d %H:%M:%S")
handler.setFormatter(logformat)
log.addHandler(handler)