mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Change debug message from ereport to elog
This commit is contained in:
parent
5286105800
commit
30f854537d
@ -54,10 +54,9 @@ ResetUnloggedRelations(int op)
|
|||||||
oldctx;
|
oldctx;
|
||||||
|
|
||||||
/* Log it. */
|
/* Log it. */
|
||||||
ereport(DEBUG1,
|
elog(DEBUG1, "resetting unlogged relations: cleanup %d init %d",
|
||||||
(errmsg("resetting unlogged relations: cleanup %d init %d",
|
|
||||||
(op & UNLOGGED_RELATION_CLEANUP) != 0,
|
(op & UNLOGGED_RELATION_CLEANUP) != 0,
|
||||||
(op & UNLOGGED_RELATION_INIT) != 0)));
|
(op & UNLOGGED_RELATION_INIT) != 0);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Just to be sure we don't leak any memory, let's create a temporary
|
* Just to be sure we don't leak any memory, let's create a temporary
|
||||||
|
Loading…
Reference in New Issue
Block a user