worker: Reduce debug logging

This commit is contained in:
Heikki Hannikainen 2013-02-23 12:35:22 +02:00
parent b11c3d8a12
commit 3d9abf32ed
1 changed files with 2 additions and 2 deletions

View File

@ -730,7 +730,7 @@ void client_close(struct worker_t *self, struct client_t *c, int errnum)
/* remove from polling list */
if (c->xfd) {
hlog(LOG_DEBUG, "client_close: xpoll_remove %p fd %d", c->xfd, c->xfd->fd);
//hlog(LOG_DEBUG, "client_close: xpoll_remove %p fd %d", c->xfd, c->xfd->fd);
xpoll_remove(&self->xp, c->xfd);
}
@ -787,7 +787,7 @@ void client_close(struct worker_t *self, struct client_t *c, int errnum)
if (c->portaccount) {
/* If port accounting is done, handle population accounting... */
hlog(LOG_DEBUG, "client_close dropping inbound_connects_account %p", c->portaccount);
//hlog(LOG_DEBUG, "client_close dropping inbound_connects_account %p", c->portaccount);
inbound_connects_account(0, c->portaccount);
c->portaccount = NULL;
} else {