From: Heikki Linnakangas Date: Tue, 4 Dec 2012 15:29:44 +0000 (+0200) Subject: Downgrade a status message from LOG to DEBUG2. X-Git-Tag: REL9_3_BETA1~628 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90991c40ebb4f05800a7a3e4da2df7732a1ebe62;p=postgresql Downgrade a status message from LOG to DEBUG2. I never intended this to be anything other than a debugging aid, but forgot to change the level before committing. --- diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index d60c2a3bfc..5a97edf50f 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -9636,7 +9636,7 @@ WaitForWALToBecomeAvailable(XLogRecPtr RecPtr, bool randAccess, } if (currentSource != oldSource) - elog(LOG, "switched WAL source from %s to %s after %s", + elog(DEBUG2, "switched WAL source from %s to %s after %s", xlogSourceNames[oldSource], xlogSourceNames[currentSource], lastSourceFailed ? "failure" : "success");