]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: move a few critical messages to level 0
authorSage Weil <sage@redhat.com>
Tue, 14 Feb 2017 00:58:26 +0000 (18:58 -0600)
committerSage Weil <sage@redhat.com>
Tue, 14 Feb 2017 00:58:26 +0000 (18:58 -0600)
Signed-off-by: Sage Weil <sage@redhat.com>
src/osd/OSD.cc

index c101a2b8d1cac3f1a8cd2021394c5fe677d2032d..8be01c7cc41c3de4d5a96efa3756b93209baeca8 100644 (file)
@@ -5029,13 +5029,13 @@ void OSD::_preboot(epoch_t oldest, epoch_t newest)
 
   // if our map within recent history, try to add ourselves to the osdmap.
   if (osdmap->test_flag(CEPH_OSDMAP_NOUP)) {
-    dout(5) << "osdmap NOUP flag is set, waiting for it to clear" << dendl;
+    derr << "osdmap NOUP flag is set, waiting for it to clear" << dendl;
   } else if (!osdmap->test_flag(CEPH_OSDMAP_SORTBITWISE)) {
-    dout(1) << "osdmap SORTBITWISE OSDMap flag is NOT set; please set it"
-           << dendl;
+    derr << "osdmap SORTBITWISE OSDMap flag is NOT set; please set it"
+        << dendl;
   } else if (!osdmap->test_flag(CEPH_OSDMAP_REQUIRE_JEWEL)) {
-    dout(1) << "osdmap REQUIRE_JEWEL OSDMap flag is NOT set; please set it"
-           << dendl;
+    derr << "osdmap REQUIRE_JEWEL OSDMap flag is NOT set; please set it"
+        << dendl;
   } else if (!monc->monmap.get_required_features().contains_all(
               ceph::features::mon::FEATURE_LUMINOUS)) {
     derr << "monmap REQUIRE_LUMINOUS is NOT set; must upgrade all monitors to "