Skip to content

Commit

Permalink
Updated the PrintDebugInfo() method output of the Application class.
Browse files Browse the repository at this point in the history
  • Loading branch information
xvitaly committed Oct 15, 2024
1 parent 7d0635f commit 6364e89
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/app/application/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,18 @@ void Application::PrintDebugInfo() const
"Reject compression poor: {4}.\n"
"Reject Kmemcache failures: {5}.\n"
"Reject reclaim failures: {6}.\n"
"Same filled pages count: {7}.\n"
"Stored pages count: {8}.\n"
"Written back pages count: {9}.",
"Reject compression failures: {7}.\n"
"Same filled pages count: {8}.\n"
"Stored pages count: {9}.\n"
"Written back pages count: {10}.",
ZSwapDebugger -> GetDuplicateEntry(),
ZSwapDebugger -> GetPoolLimitHit(),
ZSwapDebugger -> GetPoolTotalSize(),
ZSwapDebugger -> GetRejectAllocFail(),
ZSwapDebugger -> GetRejectCompressPoor(),
ZSwapDebugger -> GetRejectKmemCacheFail(),
ZSwapDebugger -> GetRejectReclaimFail(),
ZSwapDebugger -> GetRejectCompressFail(),
ZSwapDebugger -> GetSameFilledPages(),
ZSwapDebugger -> GetSameFilledPages(),
ZSwapDebugger -> GetStoredPages(),
Expand Down

0 comments on commit 6364e89

Please sign in to comment.