This repository has been archived on 2024-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
db-manager/src/logger.py

8 lines
277 B
Python
Raw Normal View History

2023-02-11 15:16:25 +00:00
from datetime import datetime
2023-05-31 19:04:33 +01:00
def out(msg :str, level :str = "OTHR"):
logline :str = f'{datetime.now().strftime("%m/%d/%Y, %H:%M:%S")}: {level}: {msg}'
print(logline)
tmpfile = "dbman-log"
with open(tmpfile, 'a') as logfile:
logfile.write(f'{logline}\n')