Spaces:
Running
Running
File size: 362 Bytes
cb61e8e 0b31526 |
1 2 3 4 5 6 7 8 9 10 11 |
from datetime import datetime
def log(message):
timestamp = datetime.now().strftime("%H:%M:%S")
line = f"[{timestamp}] {message}"
print(line, flush=True)
try:
with open("/tmp/logs.txt", "a", encoding="utf-8") as f:
f.write(line + "\n")
except Exception:
pass # dosya erişim hataları sessizce geçilir |