Skip to content

Commit

Permalink
Remove message logs
Browse files Browse the repository at this point in the history
  • Loading branch information
lazio579 committed Mar 20, 2019
1 parent 517b06e commit d62508e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/network-conn-pool.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ network_connection_pool_get(network_connection_pool *pool, GString *username, in
}

pool->cur_idle_connections--;
g_message("%s: cur_idle_connections sub:%d for sock:%p", G_STRLOC, pool->cur_idle_connections, sock);
g_debug("%s: cur_idle_connections sub:%d for sock:%p", G_STRLOC, pool->cur_idle_connections, sock);

return sock;
}
Expand Down Expand Up @@ -273,7 +273,7 @@ network_connection_pool_add(network_connection_pool *pool, network_socket *sock)
entry->link = conns->head;

pool->cur_idle_connections++;
g_message("%s: add cur_idle_connections:%d for sock:%p", G_STRLOC, pool->cur_idle_connections, sock);
g_debug("%s: add cur_idle_connections:%d for sock:%p", G_STRLOC, pool->cur_idle_connections, sock);

return entry;
}
Expand Down

0 comments on commit d62508e

Please sign in to comment.