summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--httpd.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/httpd.c b/httpd.c
index 22b3f51..121e13e 100644
--- a/httpd.c
+++ b/httpd.c
@@ -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);