mirror of
https://github.com/FAUSheppy/config
synced 2025-12-06 15:11:35 +01:00
9 lines
254 B
Python
Executable File
9 lines
254 B
Python
Executable File
import datetime
|
|
import sys
|
|
import os
|
|
|
|
def error(s):
|
|
with open("herbstlog",'a') as f:
|
|
time = str(datetime.datetime.now().time())[:-7] #cut seconds at the end
|
|
f.write(time + "ERROR" + os.path.basename(__file__) + s)
|