0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

m_config: log options set by the client API too

This commit is contained in:
wm4 2015-02-16 20:04:31 +01:00
parent 2308b3a2a6
commit d34eabe286

View File

@ -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;
}