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

Commit 4ada668

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/DA9HY4JMCDX4.24LHWFLQ59L5Z@jeltef.nl Author(s): Jelte Fennema-Nio
2 parents c3eda50 + fc1ca6b commit 4ada668

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
@@ -988,7 +988,7 @@ RehashCatCache(CatCache *cp)
988988
int newnbuckets;
989989
int i;
990990

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

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

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

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

0 commit comments

Comments
 (0)