From f2d31b73bb6ab1f4f1368f82208166687da215e9 Mon Sep 17 00:00:00 2001 From: Roderick van Domburg Date: Wed, 26 May 2021 23:14:24 +0200 Subject: [PATCH] Print normalisation pregain in verbose mode --- playback/src/player.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/playback/src/player.rs b/playback/src/player.rs index 7cc505b7..254908eb 100644 --- a/playback/src/player.rs +++ b/playback/src/player.rs @@ -286,6 +286,10 @@ impl Player { if config.normalisation { debug!("Normalisation Type: {:?}", config.normalisation_type); + debug!( + "Normalisation Pregain: {:.1} dB", + config.normalisation_pregain + ); debug!( "Normalisation Threshold: {:.1} dBFS", ratio_to_db(config.normalisation_threshold)