We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43a0428 commit ca01b1cCopy full SHA for ca01b1c
1 file changed
src/com/dvsnier/config/cfg/configuration.py
@@ -84,7 +84,7 @@ def obtain_config(self, config_file):
84
key = line[:split_at].strip()
85
suspicious_value = line[split_at + 1:].strip()
86
# https://docs.python.org/zh-cn/2.7/library/re.html?
87
- logging.debug('the key is {} and value is {}'.format(key, suspicious_value))
+ # logging.debug('the key is {} and value is {}'.format(key, suspicious_value))
88
if suspicious_value:
89
match_with_immature_list = self.__pattern_with_list.search(suspicious_value)
90
match_with_immature_digital = self.__pattern_with_number_element.search(suspicious_value)
0 commit comments