summaryrefslogtreecommitdiffstats
path: root/searchcorespi/src
diff options
context:
space:
mode:
Diffstat (limited to 'searchcorespi/src')
-rw-r--r--searchcorespi/src/vespa/searchcorespi/index/indexflushtarget.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/searchcorespi/src/vespa/searchcorespi/index/indexflushtarget.cpp b/searchcorespi/src/vespa/searchcorespi/index/indexflushtarget.cpp
index 8035925f9ec..47af497ec15 100644
--- a/searchcorespi/src/vespa/searchcorespi/index/indexflushtarget.cpp
+++ b/searchcorespi/src/vespa/searchcorespi/index/indexflushtarget.cpp
@@ -42,11 +42,8 @@ IndexFlushTarget::needUrgentFlush(void) const
{
bool urgent = _numFrozenMemoryIndexes > _maxFrozenMemoryIndexes;
SerialNum flushedSerial = _indexMaintainer.getFlushedSerialNum();
- LOG(debug,
- "Num frozen: %" PRIu32 " Urgent: %d, flushedSerial=%" PRIu64,
- _numFrozenMemoryIndexes,
- static_cast<int>(urgent),
- flushedSerial);
+ LOG(debug, "Num frozen: %u Urgent: %d, flushedSerial=%lu",
+ _numFrozenMemoryIndexes, static_cast<int>(urgent), flushedSerial);
return urgent;
}