|
@@ -189,7 +189,7 @@ export class Collector {
|
|
|
do {
|
|
do {
|
|
|
const line = lines.shift();
|
|
const line = lines.shift();
|
|
|
|
|
|
|
|
- if (!line) break;
|
|
|
|
|
|
|
+ if (!line || line.length < 3) break;
|
|
|
|
|
|
|
|
const data = this.parseBufferedData(line);
|
|
const data = this.parseBufferedData(line);
|
|
|
Logger.debug('[DEBUG] BufferedData:', JSON.stringify(data));
|
|
Logger.debug('[DEBUG] BufferedData:', JSON.stringify(data));
|