aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-rw-r--r--sway/ipc-server.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/ipc-server.c b/sway/ipc-server.c
index 54b33ca6..5e1cca89 100644
--- a/sway/ipc-server.c
+++ b/sway/ipc-server.c
@@ -923,7 +923,8 @@ bool ipc_send_reply(struct ipc_client *client, enum ipc_command_type payload_typ
}
if (client->write_buffer_size > 4e6) { // 4 MB
- sway_log(SWAY_ERROR, "Client write buffer too big, disconnecting client");
+ sway_log(SWAY_ERROR, "Client write buffer too big (%zu), disconnecting client",
+ client->write_buffer_size);
ipc_client_disconnect(client);
return false;
}