From: Lucian Petrut Date: Wed, 7 Dec 2022 14:25:09 +0000 (+0200) Subject: dokan: use the right logging subsystem X-Git-Tag: v18.1.0~602^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F49305%2Fhead;p=ceph.git dokan: use the right logging subsystem By mistake, src/dokan/dbg.cc is using the "rbd" logging subsystem. We'll update it to use the "client" subsystem. Signed-off-by: Lucian Petrut --- diff --git a/src/dokan/dbg.cc b/src/dokan/dbg.cc index 1448fa9bbef7..4584178e0c1e 100644 --- a/src/dokan/dbg.cc +++ b/src/dokan/dbg.cc @@ -16,9 +16,9 @@ #include "common/dout.h" #define dout_context g_ceph_context -#define dout_subsys ceph_subsys_rbd +#define dout_subsys ceph_subsys_client #undef dout_prefix -#define dout_prefix *_dout << "rbd-wnbd: " +#define dout_prefix *_dout << "ceph-dokan: " #define check_flag(stream, val, flag) if (val & flag) { stream << "[" #flag "]"; } #define check_flag_eq(stream, val, flag) if (val == flag) { stream << "[" #flag "]"; }