Skip to content

Commit 1226196

Browse files
committed
fix: warn instead of debug on invalid preset options
1 parent b0fec16 commit 1226196

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ffmpeg_normalize/_presets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ def merge_preset_with_args(
158158

159159
# Check if this attribute exists in cli_args
160160
if not hasattr(cli_args, attr_name):
161-
_logger.debug(
162-
f"Preset option '{key}' is not a valid ffmpeg-normalize option"
161+
_logger.warning(
162+
f"Preset option '{key}' is not a valid ffmpeg-normalize option. Skipping."
163163
)
164164
continue
165165

0 commit comments

Comments
 (0)