mirror of https://gitee.com/bigwinds/arangodb
Fix brace closing
This commit is contained in:
parent
4bb8a894e6
commit
bd6875e554
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue