aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-02-23 18:51:31 -0500
committerKristian Høgsberg <krh@bitplanet.net>2014-03-25 09:50:09 -0700
commit1bf13ae918bbdc8b95f0cdf026e85818f7d544f5 (patch)
tree8205e7e1d662af2c062a1c2cecf2049cdd65c49c /src
parenttests: Fix build of noinst fixed-benchmark test (diff)
downloadwayland-1bf13ae918bbdc8b95f0cdf026e85818f7d544f5.tar
wayland-1bf13ae918bbdc8b95f0cdf026e85818f7d544f5.tar.gz
wayland-1bf13ae918bbdc8b95f0cdf026e85818f7d544f5.tar.bz2
wayland-1bf13ae918bbdc8b95f0cdf026e85818f7d544f5.tar.lz
wayland-1bf13ae918bbdc8b95f0cdf026e85818f7d544f5.tar.xz
wayland-1bf13ae918bbdc8b95f0cdf026e85818f7d544f5.tar.zst
wayland-1bf13ae918bbdc8b95f0cdf026e85818f7d544f5.zip
server: Kill some unnecessary logs
In order to set a logging function all the time, the output we get needs to be useful. Logging about trivial things like the socket we're using and when clients disconnect doesn't realy help anyone.
Diffstat (limited to 'src')
-rw-r--r--src/wayland-server.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/wayland-server.c b/src/wayland-server.c
index 431869b..f2b1b42 100644
--- a/src/wayland-server.c
+++ b/src/wayland-server.c
@@ -664,8 +664,6 @@ WL_EXPORT void
wl_client_destroy(struct wl_client *client)
{
uint32_t serial = 0;
-
- wl_log("disconnect from client %p\n", client);
wl_signal_emit(&client->destroy_signal, client);
@@ -1090,8 +1088,6 @@ wl_display_add_socket(struct wl_display *display, const char *name)
return -1;
};
- wl_log("using socket %s\n", s->addr.sun_path);
-
s->fd_lock = get_socket_lock(s);
if (s->fd_lock < 0) {
close(s->fd);