diff options
author | Kefu Chai <kchai@redhat.com> | 2021-07-14 15:24:46 +0200 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2021-07-14 15:25:54 +0200 |
commit | 83bf44a3c21b14ca50a779c7e3293f8633ee1e3f (patch) | |
tree | f57df667e1653419531f0f25cbe44e817bf992ac /doc/dev/crimson | |
parent | Merge pull request #42314 from rzarzynski/wip-crimson-single-do_peering_event (diff) | |
download | ceph-83bf44a3c21b14ca50a779c7e3293f8633ee1e3f.tar.xz ceph-83bf44a3c21b14ca50a779c7e3293f8633ee1e3f.zip |
crimson/common/log: print out logger.debug() when log level >=6
less chatty when debug level is 5. this matches the behavior of classic
osd.
Signed-off-by: Kefu Chai <kchai@redhat.com>
Diffstat (limited to 'doc/dev/crimson')
-rw-r--r-- | doc/dev/crimson/crimson.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/dev/crimson/crimson.rst b/doc/dev/crimson/crimson.rst index 8e95e0c9b1a..3508b5990b4 100644 --- a/doc/dev/crimson/crimson.rst +++ b/doc/dev/crimson/crimson.rst @@ -82,9 +82,9 @@ over ``20`` will be printed using ``logger::trace()``. +---------+---------+ | 0 | warn | +---------+---------+ -| [1, 5) | info | +| [1, 6) | info | +---------+---------+ -| [5, 20] | debug | +| [6, 20] | debug | +---------+---------+ | > 20 | trace | +---------+---------+ |