Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4650c4f

Browse files
committed
Degrade the transaction-id wraparound point message from LOG to DEBUG1, per
discussion. Patch from Simon Riggs.
1 parent 1d5a13b commit 4650c4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/access/transam/varsup.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
77
*
88
* IDENTIFICATION
9-
* $PostgreSQL: pgsql/src/backend/access/transam/varsup.c,v 1.73 2006/09/03 15:59:38 tgl Exp $
9+
* $PostgreSQL: pgsql/src/backend/access/transam/varsup.c,v 1.74 2006/09/26 17:21:39 alvherre Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -239,7 +239,7 @@ SetTransactionIdLimit(TransactionId oldest_datminxid,
239239
LWLockRelease(XidGenLock);
240240

241241
/* Log the info */
242-
ereport(LOG,
242+
ereport(DEBUG1,
243243
(errmsg("transaction ID wrap limit is %u, limited by database \"%s\"",
244244
xidWrapLimit, NameStr(*oldest_datname))));
245245
/* Give an immediate warning if past the wrap warn point */

0 commit comments

Comments
 (0)