From 89ae370d41d5066b9f4c762e9134f74786aa7a8c Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 1 Nov 2019 01:29:30 +0100 Subject: 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. --- options/m_config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'options') 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}; -- cgit v1.2.3