Actually added logging lol

This commit is contained in:
R Dittberner 2026-06-04 13:16:20 +02:00
parent cf2711a936
commit f3e888ea4c

6
logging.py Normal file
View file

@ -0,0 +1,6 @@
import time
def log(val):
with open(log.txt) as logfile:
logfile.write("{}: Value was {}".format(time.time(), val))