From 5bfaea144773f39eacd85a1b0080245db964540a Mon Sep 17 00:00:00 2001 From: Massimiliano Pinto Date: Wed, 17 Jul 2013 18:23:34 +0200 Subject: [PATCH] Removed fprintf for delayq --- modules/protocol/mysql_backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/protocol/mysql_backend.c b/modules/protocol/mysql_backend.c index 29d59ff5b..886592c73 100644 --- a/modules/protocol/mysql_backend.c +++ b/modules/protocol/mysql_backend.c @@ -281,7 +281,7 @@ gw_MySQLWrite_backend(DCB *dcb, GWBUF *queue) * Now put the incoming data to the delay queue unless backend is connected with auth ok */ if (backend_protocol->state != MYSQL_IDLE) { - fprintf(stderr, ">>> Writing in the backend %i delay queue: last dcb command %i, queue command %i, protocol state [%s]\n", dcb->fd, dcb->command, queue->command, gw_mysql_protocol_state2string(dcb->state)); + //fprintf(stderr, ">>> Writing in the backend %i delay queue: last dcb command %i, queue command %i, protocol state [%s]\n", dcb->fd, dcb->command, queue->command, gw_mysql_protocol_state2string(dcb->state)); backend_set_delayqueue(dcb, queue); spinlock_release(&dcb->authlock);