mirror of https://github.com/jitsi/jitsi-meet
Adds in memory log storage, to be used while testing. (#2858)
* Adds in memory log storage, to be used while testing. Enabling it only when config.debug is set, a configuration provided by jitsi-meet-torture. * Moves to using config.testing.testMode property for logs storage. * Fixes comments.pull/2855/merge jitsi-meet_2983
parent
d7103c1c4c
commit
8b1aff5512
@ -0,0 +1,50 @@ |
||||
/** |
||||
* Implements in memory logs storage, used for testing/debugging. |
||||
*/ |
||||
export default class JitsiMeetInMemoryLogStorage { |
||||
|
||||
/** |
||||
* Creates new <tt>JitsiMeetInMemoryLogStorage</tt> |
||||
*/ |
||||
constructor() { |
||||
/** |
||||
* Array of the log entries to keep. |
||||
* @type {array} |
||||
*/ |
||||
this.logs = []; |
||||
} |
||||
|
||||
/** |
||||
* @returns {boolean} <tt>true</tt> when this storage is ready or |
||||
* <tt>false</tt> otherwise. |
||||
*/ |
||||
isReady() { |
||||
return true; |
||||
} |
||||
|
||||
/** |
||||
* Called by the <tt>LogCollector</tt> to store a series of log lines into |
||||
* batch. |
||||
* @param {string|object[]} logEntries an array containing strings |
||||
* representing log lines or aggregated lines objects. |
||||
*/ |
||||
storeLogs(logEntries) { |
||||
for (let i = 0, len = logEntries.length; i < len; i++) { |
||||
const logEntry = logEntries[i]; |
||||
|
||||
if (typeof logEntry === 'object') { |
||||
this.logs.push(logEntry.text); |
||||
} else { |
||||
// Regular message
|
||||
this.logs.push(logEntry); |
||||
} |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* @returns {array} the collected log entries. |
||||
*/ |
||||
getLogs() { |
||||
return this.logs; |
||||
} |
||||
} |
Loading…
Reference in new issue