From: Sage Weil Date: Tue, 30 Jul 2019 15:01:28 +0000 (-0500) Subject: mon/health_checks: format 'health summary' with a colon X-Git-Tag: v15.1.0~1877^2~26 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2a3f89fe6b348e82084eaab2fce59c2fc732f239;p=ceph.git mon/health_checks: format 'health summary' with a colon Signed-off-by: Sage Weil --- diff --git a/src/mon/health_check.h b/src/mon/health_check.h index f3826ee60aac..112ab8b53d47 100644 --- a/src/mon/health_check.h +++ b/src/mon/health_check.h @@ -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;