]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
dokan: use the right logging subsystem 49305/head
authorLucian Petrut <lpetrut@cloudbasesolutions.com>
Wed, 7 Dec 2022 14:25:09 +0000 (16:25 +0200)
committerLucian Petrut <lpetrut@cloudbasesolutions.com>
Wed, 7 Dec 2022 14:33:55 +0000 (16:33 +0200)
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 <lpetrut@cloudbasesolutions.com>
src/dokan/dbg.cc

index 1448fa9bbef74b8000e63efd7b228e7304618c24..4584178e0c1e8f2524c517840fca3ea4ff870262 100644 (file)
@@ -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 "]"; }