summaryrefslogtreecommitdiffstats
path: root/input/ipc.c
diff options
context:
space:
mode:
Diffstat (limited to 'input/ipc.c')
-rw-r--r--input/ipc.c6
1 files changed, 3 insertions, 3 deletions
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) {