NIHVIVO-76 Correct the log file parsing patterns: line now starts with a time-stamp.

This commit is contained in:
jeb228 2010-03-16 22:13:37 +00:00
parent 5520c5be0a
commit dc78bab4c9

View file

@ -55,12 +55,12 @@ class OutputSuiteParser
@suite_names << md[1] @suite_names << md[1]
end end
md = %r{^ERROR\s*(.*)}.match line md = %r{ERROR\s*(.*)}.match line
if md if md
@errors << md[1] @errors << md[1]
end end
md = %r{^WARN\s*(.*)}.match line md = %r{WARN\s*(.*)}.match line
if md if md
@warnings << md[1] @warnings << md[1]
end end