From 4ca71e21cca5bc1187deafdcc213ded676829629 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 30 Nov 2019 10:52:51 -0800 Subject: [PATCH] modules/console: Increase db cache table hits columns width. --- modules/console.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/console.cc b/modules/console.cc index 46785b890..58361da30 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -3017,7 +3017,7 @@ try out << std::left << std::setw(48) << std::setfill('_') << name << std::setfill(' ') << std::right - << " " << std::setw(9) << val.hits << " hit " + << " " << std::setw(10) << val.hits << " hit " << " " << std::setw(13) << val.time << " tot " << " " << std::setw(12) << uint64_t(val.max) << " max " << " " << std::setw(10) << uint64_t(val.median) << " med " @@ -3237,7 +3237,7 @@ try << " " << std::setw(7) << "PCT" << " " - << std::setw(9) << "HITS" + << std::setw(10) << "HITS" << " " << std::setw(9) << "MISSES" << " " @@ -3260,7 +3260,7 @@ try << std::setw(6) << std::right << std::fixed << std::setprecision(2) << (usage_pct * 100) << "%" << " " - << std::setw(9) << hits + << std::setw(10) << hits << " " << std::setw(9) << misses << " " @@ -3288,7 +3288,7 @@ try << " " << std::setw(7) << "PCT" << " " - << std::setw(9) << "HITS" + << std::setw(10) << "HITS" << " " << std::setw(9) << "MISSES" << " " @@ -3318,7 +3318,7 @@ try << std::setw(6) << std::right << std::fixed << std::setprecision(2) << (pct * 100) << '%' << " " - << std::setw(9) << s.hits + << std::setw(10) << s.hits << " " << std::setw(9) << s.misses << " "