summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-11-01 01:29:30 +0100
committerwm4 <wm4@nowhere>2019-11-01 01:29:30 +0100
commit89ae370d41d5066b9f4c762e9134f74786aa7a8c (patch)
tree8b2a711ce5d17f58f84f5335d1e378ebfd3240ea
parent04b41555820731213dd354aedfb514a8ca5a4d74 (diff)
downloadmpv-89ae370d41d5066b9f4c762e9134f74786aa7a8c.tar.bz2
mpv-89ae370d41d5066b9f4c762e9134f74786aa7a8c.tar.xz
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.
-rw-r--r--options/m_config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/options/m_config.c b/options/m_config.c
index 4be8594fac..442dbda25e 100644
--- a/options/m_config.c
+++ b/options/m_config.c
@@ -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};