5 lines
134 B
Python
5 lines
134 B
Python
# from datetime import datetime, timedelta
|
|
|
|
def log(value):
|
|
# print(str(datetime.now()) + ' ' + str(value))
|
|
print( str(value)) |