mon/health_checks: format 'health summary' with a colon

Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
Sage Weil 2019-07-30 10:01:28 -05:00
parent ee30f1b68a
commit 2a3f89fe6b

View File

@ -171,7 +171,7 @@ struct health_check_map_t {
void dump_detail(std::string *plain) const {
for (auto& p : checks) {
*plain += p.first + " " + p.second.summary + "\n";
*plain += p.first + ": " + p.second.summary + "\n";
for (auto& d : p.second.detail) {
*plain += " ";
*plain += d;