In the whole codebase there is a variety of formatting styles in the log messages, unify that to use loguru preferred way "{}" placeholders.
example:
logger.debug(f"Extracted rerun message: {key}")
to:
logger.debug("Extracted rerun message: {}", key)
referrence: https://loguru.readthedocs.io/en/stable/api/logger.html#loguru._logger.Logger.log
In the whole codebase there is a variety of formatting styles in the log messages, unify that to use loguru preferred way "{}" placeholders.
example:
to:
referrence: https://loguru.readthedocs.io/en/stable/api/logger.html#loguru._logger.Logger.log