filter_status
Prints a formatted progress message to the standard output based on the provided state, body, and additional keyword arguments.
def filter_status(
state: string,
body: string,
message: string,
**kwargs: dict
) - > null
Prints a formatted progress message to the console to track the state of a moving operation.
Parameters
| Name | Type | Description |
|---|---|---|
| state | string | The current operational state or phase to be displayed in the progress message |
| body | string | The primary content or identifier associated with the progress update |
| message | string | An additional descriptive message regarding the status update |
| **kwargs | dict | Additional keyword arguments used to populate the progress format string |
Returns
| Type | Description |
|---|---|
null | Nothing is returned; the output is sent directly to stdout. |