File size: 386 Bytes
3ca2bf2
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import logging
import os
from datetime import datetime

LOG_FILE=f"{datetime.now().strftime('%m_%d_%Y_%H_%M_%S')}.log"

log_path=os.path.join(os.getcwd(),"logs")

os.makedirs(log_path, exist_ok=True)

log_file_path=os.path.join(log_path, LOG_FILE)

logging.basicConfig(level=logging.INFO, filename=log_file_path, format="[%(asctime)s] %(lineno)d %(name)s - %(levelname)s - %(message)s")