From: Matan Breizman Date: Tue, 19 Apr 2022 10:21:08 +0000 (+0000) Subject: crimson/os: CyanStore debug subsystem X-Git-Tag: v18.0.0~995^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=80efa9cad60405e73476d5a5132906746dc90295;p=ceph-ci.git crimson/os: CyanStore debug subsystem Signed-off-by: Matan Breizman --- diff --git a/src/common/subsys.h b/src/common/subsys.h index 741929c2489..6beb1a7627d 100644 --- a/src/common/subsys.h +++ b/src/common/subsys.h @@ -97,3 +97,4 @@ SUBSYS(seastore_journal, 0, 5) SUBSYS(seastore_device, 0, 5) SUBSYS(alienstore, 0, 5) SUBSYS(mclock, 1, 5) +SUBSYS(cyanstore, 0, 5) diff --git a/src/crimson/os/cyanstore/cyan_store.cc b/src/crimson/os/cyanstore/cyan_store.cc index f10be4ad1b7..2735267b7f4 100644 --- a/src/crimson/os/cyanstore/cyan_store.cc +++ b/src/crimson/os/cyanstore/cyan_store.cc @@ -17,7 +17,7 @@ namespace { seastar::logger& logger() { - return crimson::get_logger(ceph_subsys_filestore); + return crimson::get_logger(ceph_subsys_cyanstore); } }