summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-08-24 19:17:33 +0200
committerwm4 <wm4@nowhere>2014-08-25 00:48:55 +0200
commit20d88a6dea656b1ee4bc18320f49800c6a435f59 (patch)
tree1cb7589164196168bb57ef071d56b3a76a722757
parentf7eea070f0f9347664839638396ad96dbb243832 (diff)
downloadmpv-20d88a6dea656b1ee4bc18320f49800c6a435f59.tar.bz2
mpv-20d88a6dea656b1ee4bc18320f49800c6a435f59.tar.xz
input: change verbosity of some message levels
For --input-test, print messages on terminal by default. Raise message level for enabling input sections, because the OSC makes this very extremely annoying.
-rw-r--r--input/input.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/input/input.c b/input/input.c
index 18ef20b71e..b82c1e4850 100644
--- a/input/input.c
+++ b/input/input.c
@@ -365,9 +365,10 @@ static mp_cmd_t *handle_test(struct input_ctx *ictx, int code)
for (int i = 0; i < bs->num_binds; i++) {
if (bs->binds[i].num_keys && bs->binds[i].keys[0] == code) {
count++;
+ if (count > 1)
+ msg = talloc_asprintf_append(msg, "\n");
msg = talloc_asprintf_append(msg, "%d. ", count);
append_bind_info(ictx, &msg, &bs->binds[i]);
- msg = talloc_asprintf_append(msg, "\n");
}
}
}
@@ -375,7 +376,7 @@ static mp_cmd_t *handle_test(struct input_ctx *ictx, int code)
if (!count)
msg = talloc_asprintf_append(msg, "(nothing)");
- MP_VERBOSE(ictx, "%s\n", msg);
+ MP_INFO(ictx, "%s\n", msg);
const char *args[] = {"show_text", msg, NULL};
mp_cmd_t *res = mp_input_parse_cmd_strv(ictx->log, MP_ON_OSD_MSG, args, "");
talloc_free(msg);
@@ -1240,7 +1241,7 @@ void mp_input_enable_section(struct input_ctx *ictx, char *name, int flags)
mp_input_disable_section(ictx, name);
- MP_VERBOSE(ictx, "enable section '%s'\n", name);
+ MP_DBG(ictx, "enable section '%s'\n", name);
if (ictx->num_active_sections < MAX_ACTIVE_SECTIONS) {
int top = ictx->num_active_sections;