summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavan Deolasee2015-12-09 07:04:57 +0000
committerPavan Deolasee2015-12-09 07:04:57 +0000
commit1e0c4f448331ef92460d42ea71c3a28c42a18ed3 (patch)
tree97307f51acd5c1cec4052333714e29bd60525750
parent758dd983f819a460f390a566651bb4722f79675c (diff)
Reduce logging level for couple of messages
-rw-r--r--src/backend/executor/producerReceiver.c2
-rw-r--r--src/backend/pgxc/squeue/squeue.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/producerReceiver.c b/src/backend/executor/producerReceiver.c
index 401a8349b7..b2d22e07d9 100644
--- a/src/backend/executor/producerReceiver.c
+++ b/src/backend/executor/producerReceiver.c
@@ -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)
diff --git a/src/backend/pgxc/squeue/squeue.c b/src/backend/pgxc/squeue/squeue.c
index 74cdccaaf3..3d9b9100cf 100644
--- a/src/backend/pgxc/squeue/squeue.c
+++ b/src/backend/pgxc/squeue/squeue.c
@@ -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);