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
2023-02-11 15:16:25 +00:00

4 lines
136 B
Python

from datetime import datetime
def out(msg, level):
print(datetime.now().strftime("%m/%d/%Y, %H:%M:%S") + ": " + level + ": " + msg)