Skip to content

Commit

Permalink
Use clearer "local monitor storage" in log messages
Browse files Browse the repository at this point in the history
Signed-off-by: David Zafman <[email protected]>
  • Loading branch information
David Zafman committed Nov 13, 2013
1 parent 729c152 commit a7063a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mon/DataHealthService.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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 {
Expand Down

0 comments on commit a7063a1

Please sign in to comment.