mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-26 21:00:21 +00:00
m_config: raise log level of setting options to verbose
In 2017, we lowered this to debug level. But I think setting options is important enough that it should be logged even in verbose, at least compared to all the other dumb noise. This might be reduced again if verbose logging becomes much cleaner.
This commit is contained in:
@@ -963,8 +963,8 @@ int m_config_set_option_cli(struct m_config *config, struct bstr name,
|
||||
goto done;
|
||||
|
||||
if (r == 2) {
|
||||
MP_DBG(config, "Setting option '%.*s' = '%.*s' (flags = %d)\n",
|
||||
BSTR_P(name), BSTR_P(param), flags);
|
||||
MP_VERBOSE(config, "Setting option '%.*s' = '%.*s' (flags = %d)\n",
|
||||
BSTR_P(name), BSTR_P(param), flags);
|
||||
}
|
||||
|
||||
union m_option_value val = {0};
|
||||
|
||||
Reference in New Issue
Block a user