From: Wilfried Goesgens Date: Tue, 18 Oct 2011 19:54:48 +0000 (+0200) Subject: remove debug output. X-Git-Tag: v8.11~408 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=7fece55050c597542f70c6e84db5fef4b5213cf0 remove debug output. --- diff --git a/citadel/event_client.c b/citadel/event_client.c index 91dcabf75..2fc22de8c 100644 --- a/citadel/event_client.c +++ b/citadel/event_client.c @@ -597,8 +597,6 @@ IO_recv_callback(struct ev_loop *loop, ev_io *watcher, int revents) switch (IO->NextState) { case eReadFile: nbytes = FileRecvChunked(&IO->IOB, &errmsg); - syslog(LOG_DEBUG, "****************nbytes: %ld ChunkRemain: %ldx.\n", - nbytes, IO->IOB.ChunkSendRemain); if (nbytes < 0) StrBufPlain(IO->ErrMsg, errmsg, -1); else @@ -606,7 +604,6 @@ IO_recv_callback(struct ev_loop *loop, ev_io *watcher, int revents) if (IO->IOB.ChunkSendRemain == 0) { IO->NextState = eSendReply; - syslog(LOG_DEBUG, "***********************************xxxx.\n"); } else return;