From 19ab5f794312eaffb3db8605aef49baccbbbcf85 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 5 May 2015 00:14:36 +0200 Subject: ipc: silence some common info messages They are not really interesting. At least one user complained about the noise resulting from use with shell scripts, which connect and disconnect immediately. --- input/ipc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'input') diff --git a/input/ipc.c b/input/ipc.c index f1caeeec7a..05561ddd83 100644 --- a/input/ipc.c +++ b/input/ipc.c @@ -529,7 +529,7 @@ static void *client_thread(void *p) goto done; } - MP_INFO(arg, "Client connected\n"); + MP_VERBOSE(arg, "Client connected\n"); struct pollfd fds[2] = { {.events = POLLIN, .fd = pipe_fd}, @@ -597,7 +597,7 @@ static void *client_thread(void *p) } if (bytes == 0) { - MP_INFO(arg, "Client disconnected\n"); + MP_VERBOSE(arg, "Client disconnected\n"); goto done; } @@ -731,7 +731,7 @@ static void *ipc_thread(void *p) mpthread_set_name("ipc socket listener"); - MP_INFO(arg, "Starting IPC master\n"); + MP_VERBOSE(arg, "Starting IPC master\n"); ipc_fd = socket(AF_UNIX, SOCK_STREAM, 0); if (ipc_fd < 0) { -- cgit v1.2.3