]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
dout: let <= 20 correspond to debug for crimson
authorSamuel Just <sjust@redhat.com>
Thu, 30 May 2019 00:32:07 +0000 (17:32 -0700)
committerSamuel Just <sjust@redhat.com>
Fri, 31 May 2019 21:05:44 +0000 (14:05 -0700)
Signed-off-by: Samuel Just <sjust@redhat.com>
src/common/dout.h

index e1bfdca7ce7faddcc04cca587586fb05bd81f4fc..4fec750f57c2198dd727ddca6a64ac93662eda0d 100644 (file)
@@ -134,7 +134,7 @@ struct is_dynamic<dynamic_marker_t<T>> : public std::true_type {};
         _logger.warn(_s.c_str());               \
       } else if (_lv < 5) {                     \
         _logger.info(_s.c_str());               \
-      } else if (_lv < 10) {                    \
+      } else if (_lv <= 20) {                    \
         _logger.debug(_s.c_str());              \
       } else {                                  \
         _logger.trace(_s.c_str());              \