mirror of
https://github.com/postgres/postgres.git
synced 2025-07-11 10:01:57 +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:
@ -768,7 +768,7 @@ llvm_compile_module(LLVMJitContext *context)
|
||||
MemoryContextSwitchTo(oldcontext);
|
||||
|
||||
ereport(DEBUG1,
|
||||
(errmsg("time to inline: %.3fs, opt: %.3fs, emit: %.3fs",
|
||||
(errmsg_internal("time to inline: %.3fs, opt: %.3fs, emit: %.3fs",
|
||||
INSTR_TIME_GET_DOUBLE(context->base.instr.inlining_counter),
|
||||
INSTR_TIME_GET_DOUBLE(context->base.instr.optimization_counter),
|
||||
INSTR_TIME_GET_DOUBLE(context->base.instr.emission_counter)),
|
||||
|
Reference in New Issue
Block a user