From: Bruce Momjian Date: Wed, 7 Jun 2006 13:13:16 +0000 (+0000) Subject: Use INFO-level for reindex messages, rather than NOTICE. X-Git-Tag: REL8_2_BETA1~830 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c351695dcb7ebeafdc9166ba7a928f18772689d;p=postgresql Use INFO-level for reindex messages, rather than NOTICE. Euler Taveira de Oliveira --- diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index ef57db4a0c..7aa7510e6e 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.139 2006/05/10 23:18:39 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.140 2006/06/07 13:13:16 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1108,7 +1108,7 @@ ReindexDatabase(const char *databaseName, bool do_system, bool do_user) /* functions in indexes may want a snapshot set */ ActiveSnapshot = CopySnapshot(GetTransactionSnapshot()); if (reindex_relation(relid, true)) - ereport(NOTICE, + ereport(INFO, (errmsg("table \"%s\" was reindexed", get_rel_name(relid)))); CommitTransactionCommand();