From: David Zafman Date: Wed, 13 Nov 2013 22:16:11 +0000 (-0800) Subject: Use clearer "local monitor storage" in log messages X-Git-Tag: v0.74~88^2~1^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a7063a11abca4ac1bb0850d92bec30213abc39d8;p=ceph.git Use clearer "local monitor storage" in log messages Signed-off-by: David Zafman --- diff --git a/src/mon/DataHealthService.cc b/src/mon/DataHealthService.cc index 5fc745ce11d2..be26ac3d83cc 100644 --- a/src/mon/DataHealthService.cc +++ b/src/mon/DataHealthService.cc @@ -205,7 +205,7 @@ void DataHealthService::service_tick() DataStats &ours = stats[mon->messenger->get_myinst()]; if (ours.latest_avail_percent <= g_conf->mon_data_avail_crit) { - derr << "reached critical levels of available space on data store" + derr << "reached critical levels of available space on local monitor storage" << " -- shutdown!" << dendl; force_shutdown(); return; @@ -218,7 +218,7 @@ void DataHealthService::service_tick() if (ours.latest_avail_percent <= g_conf->mon_data_avail_warn) { if (ours.latest_avail_percent != last_warned_percent) mon->clog.warn() - << "reached concerning levels of available space on data store" + << "reached concerning levels of available space on local monitor storage" << " (" << ours.latest_avail_percent << "\% free)\n"; last_warned_percent = ours.latest_avail_percent; } else {