NIHVIVO-76 Correct the log file parsing patterns: line now starts with a time-stamp.
This commit is contained in:
parent
5520c5be0a
commit
dc78bab4c9
1 changed files with 2 additions and 2 deletions
|
@ -55,12 +55,12 @@ class OutputSuiteParser
|
|||
@suite_names << md[1]
|
||||
end
|
||||
|
||||
md = %r{^ERROR\s*(.*)}.match line
|
||||
md = %r{ERROR\s*(.*)}.match line
|
||||
if md
|
||||
@errors << md[1]
|
||||
end
|
||||
|
||||
md = %r{^WARN\s*(.*)}.match line
|
||||
md = %r{WARN\s*(.*)}.match line
|
||||
if md
|
||||
@warnings << md[1]
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue