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

Commit 30f8545

Browse files
committed
Change debug message from ereport to elog
1 parent 5286105 commit 30f8545

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/backend/storage/file/reinit.c

+3-4
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,9 @@ ResetUnloggedRelations(int op)
5454
oldctx;
5555

5656
/* 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)));
57+
elog(DEBUG1, "resetting unlogged relations: cleanup %d init %d",
58+
(op & UNLOGGED_RELATION_CLEANUP) != 0,
59+
(op & UNLOGGED_RELATION_INIT) != 0);
6160

6261
/*
6362
* Just to be sure we don't leak any memory, let's create a temporary

0 commit comments

Comments
 (0)