diff options
Diffstat (limited to 'httpd.c')
-rw-r--r-- | httpd.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -13,8 +13,6 @@ static gboolean service_incoming(GSocketService *service, GSocket *socket; GError *error = NULL; - g_debug("incoming connection to service"); - socket = g_socket_connection_get_socket(connection); if(socket == NULL) { g_warning("g_socket_connection_get_socket() returned NULL"); @@ -77,8 +75,6 @@ gboolean httpd_start() { if(g_socket_listener_add_inet_port((GSocketListener*)ss, port, NULL, NULL) == FALSE) { g_warning("httpd: failed to set port"); return FALSE; - } else { - g_debug("started httpd"); } g_signal_connect(ss, "incoming", (GCallback)service_incoming, NULL); |