Skip to content

Commit eee2cde

Browse files
committed
TEMP: debug tests
1 parent d802828 commit eee2cde

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ceph_devstack/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010

1111
VERBOSE = 15
1212
logging.addLevelName(15, "VERBOSE")
13-
logging.config.fileConfig(Path(__file__).parent / "logging.conf")
13+
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)
1417
logger = logging.getLogger("ceph-devstack")
1518

1619
PROJECT_ROOT = Path(__file__).parent

0 commit comments

Comments
 (0)