summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ceph_osd.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ceph_osd.cc b/src/ceph_osd.cc
index f3d585b4775..4cf02b9b1d6 100644
--- a/src/ceph_osd.cc
+++ b/src/ceph_osd.cc
@@ -333,28 +333,28 @@ int main(int argc, const char **argv)
}
if (check_wants_journal) {
if (store->wants_journal()) {
- cout << "yes" << std::endl;
+ cout << "wants journal: yes" << std::endl;
exit(0);
} else {
- cout << "no" << std::endl;
+ cout << "wants journal: no" << std::endl;
exit(1);
}
}
if (check_allows_journal) {
if (store->allows_journal()) {
- cout << "yes" << std::endl;
+ cout << "allows journal: yes" << std::endl;
exit(0);
} else {
- cout << "no" << std::endl;
+ cout << "allows journal: no" << std::endl;
exit(1);
}
}
if (check_needs_journal) {
if (store->needs_journal()) {
- cout << "yes" << std::endl;
+ cout << "needs journal: yes" << std::endl;
exit(0);
} else {
- cout << "no" << std::endl;
+ cout << "needs journal: no" << std::endl;
exit(1);
}
}