Skip to content

Commit 180417f

Browse files
author
Dylan Huang
committed
hotfix
1 parent 67918cb commit 180417f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eval_protocol/dataset_logger/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from eval_protocol.dataset_logger.sqlite_dataset_logger_adapter import SqliteDatasetLoggerAdapter
55

66
# Allow disabling sqlite logger to avoid environment-specific constraints in simple CLI runs.
7-
if os.getenv("DISABLE_EP_SQLITE_LOG", "0").strip() == "1":
7+
if os.getenv("DISABLE_EP_SQLITE_LOG", "0").strip() != "1":
88
default_logger = SqliteDatasetLoggerAdapter()
99
else:
1010

0 commit comments

Comments
 (0)