fix(playout): disable playout-notify log rotation

Let logrotate handle liquidsoap.log log rotation.

Fix #1546
This commit is contained in:
jo 2022-05-04 15:08:11 +02:00 committed by Kyle Robbertze
parent 9130cf2895
commit f58e51ec84
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def cli(log_level: str, log_filepath: Optional[Path]):
"""
A gateway between Liquidsoap and the API.
"""
setup_logger(level_from_name(log_level), log_filepath)
setup_logger(level_from_name(log_level), log_filepath, rotate=False)
@cli.command()