fix logpath for real 2
This commit is contained in:
parent
954593258c
commit
82053e8131
2
myTS3.py
2
myTS3.py
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue