We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d802828 commit eee2cdeCopy full SHA for eee2cde
1 file changed
ceph_devstack/__init__.py
@@ -10,7 +10,10 @@
10
11
VERBOSE = 15
12
logging.addLevelName(15, "VERBOSE")
13
-logging.config.fileConfig(Path(__file__).parent / "logging.conf")
+log_conf = Path(__file__).parent / "logging.conf"
14
+print(list(log_conf.parent.glob("*")))
15
+print(f"{log_conf=} {log_conf.exists()=}")
16
+logging.config.fileConfig(log_conf)
17
logger = logging.getLogger("ceph-devstack")
18
19
PROJECT_ROOT = Path(__file__).parent
0 commit comments