mirror of
https://github.com/bdrtr/DAFAM-oto.git
synced 2025-11-08 15:52:47 +00:00
10 lines
435 B
Python
10 lines
435 B
Python
import logging
|
||
|
||
|
||
def setup_logger():
|
||
logging.basicConfig(level=logging.DEBUG, # Log seviyesini belirleyin
|
||
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', # Mesaj formatı
|
||
datefmt='%Y-%m-%d %H:%M:%S', # Tarih formatı
|
||
handlers=[logging.FileHandler('app.log' ,"w"), # Dosyaya loglama
|
||
logging.StreamHandler()])
|