We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5286105 commit 30f8545Copy full SHA for 30f8545
src/backend/storage/file/reinit.c
@@ -54,10 +54,9 @@ ResetUnloggedRelations(int op)
54
oldctx;
55
56
/* Log it. */
57
- ereport(DEBUG1,
58
- (errmsg("resetting unlogged relations: cleanup %d init %d",
59
- (op & UNLOGGED_RELATION_CLEANUP) != 0,
60
- (op & UNLOGGED_RELATION_INIT) != 0)));
+ elog(DEBUG1, "resetting unlogged relations: cleanup %d init %d",
+ (op & UNLOGGED_RELATION_CLEANUP) != 0,
+ (op & UNLOGGED_RELATION_INIT) != 0);
61
62
/*
63
* Just to be sure we don't leak any memory, let's create a temporary
0 commit comments