mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +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:
@ -1641,7 +1641,7 @@ load_libraries(const char *libraries, const char *gucname, bool restricted)
|
||||
}
|
||||
load_file(filename, restricted);
|
||||
ereport(DEBUG1,
|
||||
(errmsg("loaded library \"%s\"", filename)));
|
||||
(errmsg_internal("loaded library \"%s\"", filename)));
|
||||
if (expanded)
|
||||
pfree(expanded);
|
||||
}
|
||||
|
Reference in New Issue
Block a user