⚰️ DipDup 6.5 branch is no longer supported. Please, follow the⠀Migration Guide⠀to update to the latest version.

Logging

To control the number of logs DipDup produces, set the logging field in config:

logging: default|verbose|quiet

If you need more fined tuning, perform it in the on_restart hook:

import logging

async def on_restart(
    ctx: HookContext,
) -> None:
    logging.getLogger('some_logger').setLevel('DEBUG')