When I use it: from loguru import logger @retry(requests.exceptions.RequestException, tries=4, delay=2, logger=logger) It is not possible to print the complete log like using logging, it only prints the content "%s, retrying in %s seconds..."
When I use it:
from loguru import logger
@Retry(requests.exceptions.RequestException, tries=4, delay=2, logger=logger)
It is not possible to print the complete log like using logging, it only prints the content "%s, retrying in %s seconds..."