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

4 lines
145 B
Python
Raw Normal View History

2023-02-11 15:16:25 +00:00
from datetime import datetime
2023-05-30 23:03:16 +01:00
def out(msg, level = "OTHR"):
2023-02-11 15:16:25 +00:00
print(datetime.now().strftime("%m/%d/%Y, %H:%M:%S") + ": " + level + ": " + msg)