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.
This commit is contained in:
Heikki Linnakangas 2012-12-04 17:29:44 +02:00
parent 32f4de0adf
commit 90991c40eb
1 changed files with 1 additions and 1 deletions

View File

@ -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");