fix logpath
This commit is contained in:
parent
c5c265d3a0
commit
aed1a85b20
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue