Skip to content

Commit 042b12d

Browse files
author
Commitfest Bot
committed
[CF 5785] v1 - Reduce DEBUG level of catcache refreshing messages
This branch was automatically generated by a robot using patches from an email thread registered at: https://commitfest.postgresql.org/patch/5785 The branch will be overwritten each time a new patch version is posted to the thread, and also periodically to check for bitrot caused by changes on the master branch. Patch(es): https://www.postgresql.org/message-id/[email protected] Author(s): Jelte Fennema-Nio
2 parents d3111cb + 1ac260c commit 042b12d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/utils/cache/catcache.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ RehashCatCache(CatCache *cp)
989989
int newnbuckets;
990990
int i;
991991

992-
elog(DEBUG1, "rehashing catalog cache id %d for %s; %d tups, %d buckets",
992+
elog(DEBUG5, "rehashing catalog cache id %d for %s; %d tups, %d buckets",
993993
cp->id, cp->cc_relname, cp->cc_ntup, cp->cc_nbuckets);
994994

995995
/* Allocate a new, larger, hash table. */
@@ -1027,7 +1027,7 @@ RehashCatCacheLists(CatCache *cp)
10271027
int newnbuckets;
10281028
int i;
10291029

1030-
elog(DEBUG1, "rehashing catalog cache id %d for %s; %d lists, %d buckets",
1030+
elog(DEBUG5, "rehashing catalog cache id %d for %s; %d lists, %d buckets",
10311031
cp->id, cp->cc_relname, cp->cc_nlist, cp->cc_nlbuckets);
10321032

10331033
/* Allocate a new, larger, hash table. */

0 commit comments

Comments
 (0)