From: Samuel Just Date: Thu, 30 May 2019 00:32:07 +0000 (-0700) Subject: dout: let <= 20 correspond to debug for crimson X-Git-Tag: v15.1.0~2580^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0c254023cf851cdb967ca47445e6e4e964b7f08f;p=ceph.git dout: let <= 20 correspond to debug for crimson Signed-off-by: Samuel Just --- diff --git a/src/common/dout.h b/src/common/dout.h index e1bfdca7ce7f..4fec750f57c2 100644 --- a/src/common/dout.h +++ b/src/common/dout.h @@ -134,7 +134,7 @@ struct is_dynamic> : 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()); \