chore(playout): disable amqp debug logs

This commit is contained in:
jo 2023-02-28 17:51:43 +01:00 committed by Kyle Robbertze
parent 5042704d42
commit 0b3dbe8505
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,10 @@ from .recorder import Recorder
logger = logging.getLogger(__name__)
for module in ("amqp",):
logging.getLogger(module).setLevel(logging.INFO)
logging.getLogger(module).propagate = False
@click.command(context_settings={"auto_envvar_prefix": DEFAULT_ENV_PREFIX})
@cli_logging_options()