mirror of
https://github.com/postgres/postgres.git
synced 2025-07-09 22:41:56 +03:00
Use errmsg_internal for debug messages
An inconsistent set of debug-level messages was not using errmsg_internal(), thus uselessly exposing the messages to translation work. Fix those.
This commit is contained in:
@ -1226,7 +1226,7 @@ CompactCheckpointerRequestQueue(void)
|
||||
CheckpointerShmem->requests[preserve_count++] = CheckpointerShmem->requests[n];
|
||||
}
|
||||
ereport(DEBUG1,
|
||||
(errmsg("compacted fsync request queue from %d entries to %d entries",
|
||||
(errmsg_internal("compacted fsync request queue from %d entries to %d entries",
|
||||
CheckpointerShmem->num_requests, preserve_count)));
|
||||
CheckpointerShmem->num_requests = preserve_count;
|
||||
|
||||
|
Reference in New Issue
Block a user