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

Commit 9c35169

Browse files
committed
Use INFO-level for reindex messages, rather than NOTICE.
Euler Taveira de Oliveira
1 parent 6ca917a commit 9c35169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/commands/indexcmds.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.139 2006/05/10 23:18:39 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/commands/indexcmds.c,v 1.140 2006/06/07 13:13:16 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -1108,7 +1108,7 @@ ReindexDatabase(const char *databaseName, bool do_system, bool do_user)
11081108
/* functions in indexes may want a snapshot set */
11091109
ActiveSnapshot = CopySnapshot(GetTransactionSnapshot());
11101110
if (reindex_relation(relid, true))
1111-
ereport(NOTICE,
1111+
ereport(INFO,
11121112
(errmsg("table \"%s\" was reindexed",
11131113
get_rel_name(relid))));
11141114
CommitTransactionCommand();

0 commit comments

Comments
 (0)