MCPcopy Index your code
hub / github.com/nodejs/node / processLogLine_

Method processLogLine_

deps/v8/tools/logreader.mjs:263–273  ·  view source on GitHub ↗

* Processes a single log line. * * @param {String} a log line * @private

(line)

Source from the content-addressed store, hash-verified

261 * @private
262 */
263 async processLogLine_(line) {
264 if (line.length > 0) {
265 try {
266 const fields = this.csvParser_.parseLine(line);
267 await this.dispatchLogRow_(fields);
268 } catch (e) {
269 this.printError(`line ${this.lineNum_ + 1}: ${e.message || e}\n${e.stack}`);
270 }
271 }
272 this.lineNum_++;
273 }
274}

Callers 2

processLogLineMethod · 0.95
processLog_Method · 0.95

Calls 3

dispatchLogRow_Method · 0.95
printErrorMethod · 0.95
parseLineMethod · 0.45

Tested by

no test coverage detected