mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Print normalisation pregain in verbose mode
This commit is contained in:
parent
d5070a107a
commit
f2d31b73bb
1 changed files with 4 additions and 0 deletions
|
@ -286,6 +286,10 @@ impl Player {
|
||||||
|
|
||||||
if config.normalisation {
|
if config.normalisation {
|
||||||
debug!("Normalisation Type: {:?}", config.normalisation_type);
|
debug!("Normalisation Type: {:?}", config.normalisation_type);
|
||||||
|
debug!(
|
||||||
|
"Normalisation Pregain: {:.1} dB",
|
||||||
|
config.normalisation_pregain
|
||||||
|
);
|
||||||
debug!(
|
debug!(
|
||||||
"Normalisation Threshold: {:.1} dBFS",
|
"Normalisation Threshold: {:.1} dBFS",
|
||||||
ratio_to_db(config.normalisation_threshold)
|
ratio_to_db(config.normalisation_threshold)
|
||||||
|
|
Loading…
Reference in a new issue