mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
Keep the logs if no store exists
This commit is contained in:
parent
ea063ab8b0
commit
2ecf65f057
1 changed files with 6 additions and 2 deletions
|
@ -80,11 +80,15 @@ class ConsoleLogger {
|
|||
|
||||
/**
|
||||
* Retrieve log lines to flush to disk.
|
||||
* @param {boolean} keepLogs True to not delete logs after flushing.
|
||||
* @return {string} \n delimited log lines to flush.
|
||||
*/
|
||||
flush() {
|
||||
flush(keepLogs) {
|
||||
// The ConsoleLogger doesn't care how these end up on disk, it just
|
||||
// flushes them to the caller.
|
||||
if (keepLogs) {
|
||||
return this.logs;
|
||||
}
|
||||
const logsToFlush = this.logs;
|
||||
this.logs = "";
|
||||
return logsToFlush;
|
||||
|
@ -470,7 +474,7 @@ module.exports = {
|
|||
}
|
||||
else {
|
||||
logs.push({
|
||||
lines: logger.flush(),
|
||||
lines: logger.flush(true),
|
||||
id: "-",
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue