File size: 671 Bytes
c45cf35 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# Importing the required modules
import os
import logging
from datetime import datetime
# Creating a log file with the current date and time as the name of the file
LOG_FILE = f"{datetime.now().strftime('%m_%d_%Y_%H_%M_%S')}.log"
# Creating a logs folder if it does not exist
logs_path = os.path.join(os.getcwd(), "logs", LOG_FILE)
os.makedirs(logs_path, exist_ok=True)
# Setting the log file path and the log level
LOG_FILE_PATH = os.path.join(logs_path, LOG_FILE)
# Configuring the logger
logging.basicConfig(
filename=LOG_FILE_PATH,
format="[ %(asctime)s ] %(lineno)d %(name)s - %(levelname)s - %(message)s",
level=logging.INFO,
)
|