log_task_started
Logs the identification, module path, and status of a task when it begins execution by listening to the task_started signal.
def log_task_started(
sender: object,
task_result: TaskResult,
**kwargs: dict
)
Logs the initialization of a background task, including its unique identifier, module path, and current status.
Parameters
| Name | Type | Description |
|---|---|---|
| sender | object | The object that sent the task_started signal. |
| task_result | TaskResult | The task result object containing the task's unique ID, module path, and execution status. |
| **kwargs | dict | Additional keyword arguments passed by the signal dispatcher. |
Returns
| Type | Description |
|---|---|
| Nothing is returned; this function performs a logging side effect. |