flare / log.py
ciyidogan's picture
proje dosyaları yüklendi
4b9f7d2
raw
history blame
150 Bytes
from datetime import datetime
def log(message):
timestamp = datetime.now().strftime("%H:%M:%S")
print(f"[{timestamp}] {message}", flush=True)