From 22f3bcdec70ee64debe3d16369a9f275fee916a6 Mon Sep 17 00:00:00 2001 From: unknown <joreland@mysql.com> Date: Tue, 31 Aug 2004 22:17:58 +0200 Subject: [PATCH] Also update printer --- ndb/src/common/debugger/EventLogger.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ndb/src/common/debugger/EventLogger.cpp b/ndb/src/common/debugger/EventLogger.cpp index 50c3b77873..69874ab7ec 100644 --- a/ndb/src/common/debugger/EventLogger.cpp +++ b/ndb/src/common/debugger/EventLogger.cpp @@ -624,7 +624,8 @@ EventLogger::getText(int type, "%sTrans. Count = %u, Commit Count = %u, " "Read Count = %u, Simple Read Count = %u,\n" "Write Count = %u, AttrInfo Count = %u, " - "Concurrent Operations = %u, Abort Count = %u", + "Concurrent Operations = %u, Abort Count = %u\n" + " Scans: %u Range scans: %u", theNodeId, theData[1], theData[2], @@ -633,7 +634,9 @@ EventLogger::getText(int type, theData[5], theData[6], theData[7], - theData[8]); + theData[8], + theData[9], + theData[10]); break; case EventReport::OperationReportCounters: ::snprintf(m_text, sizeof(m_text), -- 2.30.9