From d34eabe286c46811f0fb1188c789572a57df2b5d Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 16 Feb 2015 20:04:31 +0100 Subject: m_config: log options set by the client API too --- options/m_config.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'options/m_config.c') diff --git a/options/m_config.c b/options/m_config.c index 0c925368c2..43fd508a9d 100644 --- a/options/m_config.c +++ b/options/m_config.c @@ -717,6 +717,13 @@ int m_config_set_option_node(struct m_config *config, bstr name, if (r >= 0) r = m_config_set_option_raw(config, co, &val, flags); + if (mp_msg_test(config->log, MSGL_V)) { + char *s = m_option_type_node.print(NULL, data); + MP_VERBOSE(config, "Setting option '%.*s' = %s (flags = %d) -> %d\n", + BSTR_P(name), s ? s : "?", flags, r); + talloc_free(s); + } + m_option_free(co->opt, &val); return r; } -- cgit v1.2.3