aboutsummaryrefslogtreecommitdiffstats
path: root/qtip/collector/parser
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-03-15 01:52:14 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-03-15 01:52:14 +0000
commitca443fa2f15b544cc908b65d686e431de571c5c8 (patch)
tree71587a1c755dca84f1c9eabf24de7ab6be84fa20 /qtip/collector/parser
parent831fc9ca1e1c6b98d5359f3c3c3c8153c9213be8 (diff)
parentf018c5ca5e1aaca2f5c5bc9fca7dd4237401cc83 (diff)
Merge "optimize console info" into stable/danube
Diffstat (limited to 'qtip/collector/parser')
-rw-r--r--qtip/collector/parser/grep.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/qtip/collector/parser/grep.py b/qtip/collector/parser/grep.py
index 44edb5a1..d3a8210a 100644
--- a/qtip/collector/parser/grep.py
+++ b/qtip/collector/parser/grep.py
@@ -49,8 +49,6 @@ def _parse_logfile(config, paths):
'{0}/{1}'.format(paths, regex_rules_by_file[GrepProp.FILENAME])
for regex in regex_rules_by_file['grep']:
matches = grep_in_file(filename, regex)
- for item in matches:
- print item.groupdict()
if len(matches) > 1:
temp_dict = defaultdict(list)
for item in [match.groupdict() for match in matches]: