rintrix/chatlib/utils.py

5 lines
101 B
Python

from datetime import datetime
tracing=False
def trace(*msg):
if tracing: print(datetime.now(),*msg)