mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-22 19:14:52 +01:00
mark force-finished log items when app closes
This commit is contained in:
parent
17451b7bd6
commit
a8df30016b
@ -115,6 +115,7 @@ export class BaseLogger {
|
||||
// about the duration of the item, etc ...
|
||||
const serialized = openItem.serialize(new LogFilter(), 0);
|
||||
if (serialized) {
|
||||
serialized.f = true; //(f)orced
|
||||
this._persistItem(serialized);
|
||||
}
|
||||
} catch (err) {
|
||||
|
@ -139,6 +139,7 @@ export class LogItem {
|
||||
// (c)hildren
|
||||
item.c = children;
|
||||
}
|
||||
// (f)orced can also be set on an item by the logger
|
||||
return item;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user