Reduce routine successful-archiving message from LOG to DEBUG1 grade,

to reduce chattiness of logs.  Per discussion.
Simon Riggs
This commit is contained in:
Tom Lane 2007-11-24 21:37:04 +00:00
parent ae3ff7adf7
commit 86be19bf70
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/pgarch.c,v 1.32 2007/11/15 21:14:37 momjian Exp $ * $PostgreSQL: pgsql/src/backend/postmaster/pgarch.c,v 1.33 2007/11/24 21:37:04 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -492,7 +492,7 @@ pgarch_archiveXlog(char *xlog)
return false; return false;
} }
ereport(LOG, ereport(DEBUG1,
(errmsg("archived transaction log file \"%s\"", xlog))); (errmsg("archived transaction log file \"%s\"", xlog)));
return true; return true;