aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2012-12-04 17:29:44 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2012-12-04 17:29:44 +0200
commit90991c40ebb4f05800a7a3e4da2df7732a1ebe62 (patch)
tree702d090c04ce2fd491edb4e525f446bc68106a68 /src
parent32f4de0adfb2037f1402e40b54a5c4043227363f (diff)
downloadpostgresql-90991c40ebb4f05800a7a3e4da2df7732a1ebe62.tar.gz
postgresql-90991c40ebb4f05800a7a3e4da2df7732a1ebe62.zip
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.
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/transam/xlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index d60c2a3bfc5..5a97edf50fc 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");