4 lines
136 B
Python
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)
|