A bit of a refactor, attempt to be nicer to servers and still load quickly.

This commit is contained in:
Storm Dragon
2025-12-16 02:38:05 -05:00
parent 5507aa8faa
commit 1658321a4b
3 changed files with 609 additions and 232 deletions

View File

@@ -32,7 +32,7 @@ def setupLogging():
format='%(message)s [%(asctime)s]',
datefmt='%a %b %d %I:%M:%S %p %Z %Y',
handlers=[
logging.FileHandler(logFile, encoding='utf-8'),
logging.FileHandler(logFile, mode='w', encoding='utf-8'),
logging.StreamHandler(sys.stdout)
]
)