Skip to content

Commit

Permalink
ipc: remove chatty debug log messages
Browse files Browse the repository at this point in the history
These aren't particularly useful, and clobber the debug logs.
  • Loading branch information
emersion authored and kennylevinsen committed May 30, 2022
1 parent a5c2e9f commit 251a648
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions sway/ipc-server.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ struct sockaddr_un *ipc_user_sockaddr(void) {
int ipc_handle_connection(int fd, uint32_t mask, void *data) {
(void) fd;
struct sway_server *server = data;
sway_log(SWAY_DEBUG, "Event on IPC listening socket");
assert(mask == WL_EVENT_READABLE);

int client_fd = accept(ipc_socket, NULL, NULL);
Expand Down Expand Up @@ -211,13 +210,10 @@ int ipc_client_handle_readable(int client_fd, uint32_t mask, void *data) {
}

if (mask & WL_EVENT_HANGUP) {
sway_log(SWAY_DEBUG, "Client %d hung up", client->fd);
ipc_client_disconnect(client);
return 0;
}

sway_log(SWAY_DEBUG, "Client %d readable", client->fd);

int read_available;
if (ioctl(client_fd, FIONREAD, &read_available) == -1) {
sway_log_errno(SWAY_INFO, "Unable to read IPC socket buffer size");
Expand Down Expand Up @@ -523,7 +519,6 @@ int ipc_client_handle_writable(int client_fd, uint32_t mask, void *data) {
}

if (mask & WL_EVENT_HANGUP) {
sway_log(SWAY_DEBUG, "Client %d hung up", client->fd);
ipc_client_disconnect(client);
return 0;
}
Expand All @@ -532,8 +527,6 @@ int ipc_client_handle_writable(int client_fd, uint32_t mask, void *data) {
return 0;
}

sway_log(SWAY_DEBUG, "Client %d writable", client->fd);

ssize_t written = write(client->fd, client->write_buffer, client->write_buffer_len);

if (written == -1 && errno == EAGAIN) {
Expand Down Expand Up @@ -955,7 +948,5 @@ bool ipc_send_reply(struct ipc_client *client, enum ipc_command_type payload_typ
ipc_client_handle_writable, client);
}

sway_log(SWAY_DEBUG, "Added IPC reply of type 0x%x to client %d queue: %s",
payload_type, client->fd, payload);
return true;
}

0 comments on commit 251a648

Please sign in to comment.