refactor(core): Merge event bus controllers and remove dead code (no-changelog) (#9688)

This commit is contained in:
Iván Ovejero
2024-06-10 17:38:02 +02:00
committed by GitHub
parent 2521daadfc
commit 817167cf4b
11 changed files with 113 additions and 274 deletions

View File

@@ -97,15 +97,6 @@ export class MessageEventBusLogWriter {
}
}
/**
* Pauses all logging. Events are still received by the worker, they just are not logged any more
*/
async pauseLogging() {
if (this.worker) {
this.worker.postMessage({ command: 'pauseLogging', data: {} });
}
}
startRecoveryProcess() {
if (this.worker) {
this.worker.postMessage({ command: 'startRecoveryProcess', data: {} });