fix logpath

This commit is contained in:
Lukas 2021-09-27 13:07:39 +02:00
parent c5c265d3a0
commit aed1a85b20
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ def setupLogger(lvl="DEBUG"):
global log # Needed to log exceptions in src\util
log = logging.getLogger()
logpath = r".\log\myTS3.log"
logpath = os.path.dirname(os.path.abspath(__file__)) + r"\log\myTS3.log"
if not os.path.exists(os.path.dirname(logpath)):
os.makedirs(os.path.dirname(logpath))
handler = RotatingFileHandler(logpath, encoding='utf-8', maxBytes=5*1024*1024, backupCount=10)