Bases: Formatter
Formatter that adds a timestamp to the message, if it's not a duplicate.
Source code in python/toolr/utils/_logs.py
| def __init__(self, *args: Any, **kwargs: Any) -> None:
super().__init__(*args, **kwargs)
self._last_timestamp: str | None = None
|