Skip to content

Commit 0582561

Browse files
committed
remove debug logging
Signed-off-by: Zen <[email protected]>
1 parent 82e4038 commit 0582561

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/ugrd/base/check.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.1.0'
1+
__version__ = '0.1.1'
22

33
from zenlib.util import contains
44

@@ -17,7 +17,6 @@ def check_included_funcs(self):
1717

1818
def check_in_file(self):
1919
""" Runs all 'check_in_file' checks. """
20-
self.logger.critical(self['check_in_file'])
2120
for file, lines in self['check_in_file'].items():
2221
_check_in_file(self, file, lines)
2322

@@ -31,8 +30,6 @@ def _check_in_file(self, file, lines):
3130
with open(file, 'r') as f:
3231
file_lines = f.readlines()
3332

34-
self.logger.critical(file_lines)
35-
3633
for check_line in lines:
3734
if check_line not in file_lines:
3835
raise ValueError("Failed to find line '%s' in file '%s'" % (check_line, file))

0 commit comments

Comments
 (0)