remove debug output.
authorWilfried Goesgens <dothebart@citadel.org>
Tue, 18 Oct 2011 19:54:48 +0000 (21:54 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Tue, 18 Oct 2011 19:54:48 +0000 (21:54 +0200)
citadel/event_client.c

index 91dcabf758e4a38244f84618e9bd32272a325697..2fc22de8c600eecf3bafbe315c8f40b5a549e6e8 100644 (file)
@@ -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;