mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
Use proper format specifier %X/%X for LSN, again.
Commitcee31f5
fixed this problem, but commit989be08
accidentally reverted the fix. Thomas Munro
This commit is contained in:
parent
cac0e36682
commit
ead9963c47
@ -474,7 +474,7 @@ SyncRepReleaseWaiters(void)
|
||||
|
||||
LWLockRelease(SyncRepLock);
|
||||
|
||||
elog(DEBUG3, "released %d procs up to write %X/%X, %d procs up to flush %X/%X, %d procs up to apply %X/%x",
|
||||
elog(DEBUG3, "released %d procs up to write %X/%X, %d procs up to flush %X/%X, %d procs up to apply %X/%X",
|
||||
numwrite, (uint32) (writePtr >> 32), (uint32) writePtr,
|
||||
numflush, (uint32) (flushPtr >> 32), (uint32) flushPtr,
|
||||
numapply, (uint32) (applyPtr >> 32), (uint32) applyPtr);
|
||||
|
Loading…
Reference in New Issue
Block a user