Change a elog(LOG) to elog(DEBUG2)
authorPavan Deolasee <[email protected]>
Tue, 13 Nov 2018 07:04:57 +0000 (12:34 +0530)
committerPavan Deolasee <[email protected]>
Tue, 13 Nov 2018 07:04:57 +0000 (12:34 +0530)
It was accidentally left at LOG level. Per report from Krzysztof Nienartowicz

src/backend/storage/ipc/procarray.c

index 26afd15841e9842e8080370facc653c8bf60f476..8360f85dab8f759216496de0672ce179be879715 100644 (file)
@@ -1186,7 +1186,7 @@ TransactionIdIsInProgressExtended(TransactionId xid, bool check_gtm)
 
        if (check_gtm && ClusterMonitorTransactionIsInProgress(xid))
        {
-               elog(LOG, "ClusterMonitor reports xid %u as in-progress", xid);
+               elog(DEBUG2, "ClusterMonitor reports xid %u as in-progress", xid);
                LWLockRelease(ProcArrayLock);
                return true;
        }