mirror of
https://github.com/postgres/postgres.git
synced 2025-06-20 15:22:23 +03:00
Convert elog(LOG) calls to ereport() where appropriate
User-visible log messages should go through ereport(), so they are subject to translation. Many remaining elog(LOG) calls are really debugging calls. Reviewed-by: Alvaro Herrera <alvherre@alvh.no-ip.org> Reviewed-by: Michael Paquier <michael@paquier.xyz> Reviewed-by: Noah Misch <noah@leadboat.com> Discussion: https://www.postgresql.org/message-id/flat/92d6f545-5102-65d8-3c87-489f71ea0a37%40enterprisedb.com
This commit is contained in:
@ -1167,8 +1167,9 @@ gistfixsplit(GISTInsertState *state, GISTSTATE *giststate)
|
||||
Page page;
|
||||
List *splitinfo = NIL;
|
||||
|
||||
elog(LOG, "fixing incomplete split in index \"%s\", block %u",
|
||||
RelationGetRelationName(state->r), stack->blkno);
|
||||
ereport(LOG,
|
||||
(errmsg("fixing incomplete split in index \"%s\", block %u",
|
||||
RelationGetRelationName(state->r), stack->blkno)));
|
||||
|
||||
Assert(GistFollowRight(stack->page));
|
||||
Assert(OffsetNumberIsValid(stack->downlinkoffnum));
|
||||
|
Reference in New Issue
Block a user