From: Tom Lane Date: Sat, 24 Nov 2007 21:37:04 +0000 (+0000) Subject: Reduce routine successful-archiving message from LOG to DEBUG1 grade, X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=960613af33eb56df5eb8b22306ba58ac46b0bcc7;p=users%2Fbernd%2Fpostgres.git Reduce routine successful-archiving message from LOG to DEBUG1 grade, to reduce chattiness of logs. Per discussion. Simon Riggs --- diff --git a/src/backend/postmaster/pgarch.c b/src/backend/postmaster/pgarch.c index b1a1989ef0..08660c0ac6 100644 --- a/src/backend/postmaster/pgarch.c +++ b/src/backend/postmaster/pgarch.c @@ -492,7 +492,7 @@ pgarch_archiveXlog(char *xlog) return false; } - ereport(LOG, + ereport(DEBUG1, (errmsg("archived transaction log file \"%s\"", xlog))); return true;