mirror of
https://github.com/postgres/postgres.git
synced 2025-11-09 06:21:09 +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:
@@ -1315,7 +1315,7 @@ SlruInternalDeleteSegment(SlruCtl ctl, int segno)
|
||||
|
||||
/* Unlink the file. */
|
||||
SlruFileName(ctl, path, segno);
|
||||
ereport(DEBUG2, (errmsg("removing file \"%s\"", path)));
|
||||
ereport(DEBUG2, (errmsg_internal("removing file \"%s\"", path)));
|
||||
unlink(path);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user