sergree / matchering

🎚️ Open Source Audio Matching and Mastering

Home Page:https://pypi.org/project/matchering/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Change several lines "debug()" to "info()"

kubinka0505 opened this issue · comments

I am using matchering-cli that can use extended logger usage. Below, I present some examples of lines that I think should be called with info instead of debug.

Important

This issue is not appearing in matchering-cli repository as it inherits logs from this one


"Where was my result file saved?"

debug(f"Saving the {name} {sample_rate} Hz Stereo {subtype} to: '{file}'...")

debug(f"'{file}' is saved")


"Is matchering initializing or my files has been loaded already?"

debug(f"Loading the {file_type} file: '{file}'...")


"Have I possibly picked the wrong file? I would like to know it's basic properties."

debug(f"{name} audio length: {length} samples ({time_str(length, sample_rate)})")


I could probably find more, but these are most basic.