Reduce logging level for couple of messages
authorPavan Deolasee <[email protected]>
Wed, 9 Dec 2015 07:04:57 +0000 (12:34 +0530)
committerPavan Deolasee <[email protected]>
Wed, 9 Dec 2015 07:04:57 +0000 (12:34 +0530)
src/backend/executor/producerReceiver.c
src/backend/pgxc/squeue/squeue.c

index 401a8349b7ad9fc7c979462e384b974532bf55a2..b2d22e07d9116c79915866be1d1727cb100f0f15 100644 (file)
@@ -144,7 +144,7 @@ producerDestroyReceiver(DestReceiver *self)
 {
        ProducerState *myState = (ProducerState *) self;
 
-       elog(LOG, "Producer stats: total %ld tuples, %ld tuples to self, %ld to other nodes",
+       elog(DEBUG2, "Producer stats: total %ld tuples, %ld tuples to self, %ld to other nodes",
                 myState->tcount, myState->selfcount, myState->othercount);
 
        if (myState->consumer)
index 74cdccaaf32fed7ff197130e860677e53761adf7..3d9b9100cf28097750842a129b1408fc24010121 100644 (file)
@@ -1250,7 +1250,7 @@ CHECK:
 #ifdef SQUEUE_STAT
        elog(DEBUG1, "Producer %s is done, there were %ld pauses", squeue->sq_key, squeue->stat_paused);
 #endif
-       elog(LOG, "Producer %s is done", squeue->sq_key);
+       elog(DEBUG1, "Producer %s is done", squeue->sq_key);
 
        LWLockAcquire(SQueuesLock, LW_EXCLUSIVE);