1
0
Fork 0

Fix brace closing

This commit is contained in:
Willi Goesgens 2015-01-30 10:53:14 +01:00
parent 4bb8a894e6
commit bd6875e554
1 changed files with 16 additions and 16 deletions

View File

@ -378,7 +378,7 @@ function readImportantLogLines(logFilename) {
var line = buf.asciiSlice(lineStart, i - 1); var line = buf.asciiSlice(lineStart, i - 1);
// filter out regular INFO lines, and test related messages // filter out regular INFO lines, and test related messages
if ((line.search(" INFO ") < 0) && if ((line.search(" INFO ") < 0) &&
(line.search("WARNING about to execute:") < 0) { (line.search("WARNING about to execute:") < 0)) {
importantLines.push(line); importantLines.push(line);
} }
lineStart = i + 1; lineStart = i + 1;