logging
module in your Python file using the command:import logging
logger = logging.getLogger(__name__)
formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
file_handler = logging.FileHandler('log_file.log')
file_handler.setFormatter(formatter)
logger.addHandler(file_handler)
The decorator function should have the following structure:
def logger_decorator(func):
def wrapper(*args, **kwargs):
logger.info(f'{func.__name__} function is running')
return func(*args, **kwargs)
return wrapper
In this example, the logger is set to output an information message when the function is executed.
by adding @logger_decorator
before the function definition. For example:
@logger_decorator
def my_function():
# function code here