salesgpt.logger module

class salesgpt.logger.TimeFilter(name='')

Bases: Filter

filter(record)

Determine if the specified record is to be logged.

Returns True if the record should be logged, or False otherwise. If deemed appropriate, the record may be modified in-place.

salesgpt.logger.time_logger(func)

Decorator function to log the time taken by any function.

This decorator logs the execution time of the decorated function. It logs the start time before the function execution, the end time after the function execution, and calculates the execution time. The function name and execution time are then logged at the INFO level.

Args:

func (Callable): The function to be decorated.

Returns:

Callable: The decorated function.