Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit e3ea83a

Browse files
committed
Comment out conf logging for now.
1 parent 254f449 commit e3ea83a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

data_diff/__main__.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,11 @@ def _main(
117117

118118
if debug:
119119
logging.basicConfig(level=logging.DEBUG, format=LOG_FORMAT, datefmt=DATE_FORMAT)
120-
if __conf__:
121-
__conf__ = deepcopy(__conf__)
122-
_remove_passwords_in_dict(__conf__)
123-
logging.debug(f"Applied run configuration: {__conf__}")
120+
# XXX Temporarily commented out, until we remove the passwords from URIs as well. See issue #150.
121+
# if __conf__:
122+
# __conf__ = deepcopy(__conf__)
123+
# _remove_passwords_in_dict(__conf__)
124+
# logging.debug(f"Applied run configuration: {__conf__}")
124125
elif verbose:
125126
logging.basicConfig(level=logging.INFO, format=LOG_FORMAT, datefmt=DATE_FORMAT)
126127

0 commit comments

Comments
 (0)