From 05680286ad4d55fee6d70144a018517e648718d9 Mon Sep 17 00:00:00 2001 From: Settel Date: Sun, 25 Sep 2022 17:27:52 +0200 Subject: [PATCH] chore: remove debug output --- client/src/composables/engine/fetchUpdate.ts | 2 -- client/src/composables/engine/startStop.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/client/src/composables/engine/fetchUpdate.ts b/client/src/composables/engine/fetchUpdate.ts index bd8f9fc..35977cb 100644 --- a/client/src/composables/engine/fetchUpdate.ts +++ b/client/src/composables/engine/fetchUpdate.ts @@ -29,7 +29,6 @@ export async function fetchUpdate(this: EngineContext) { useAlert().clearAlert() this.isActive = false this.shouldStop = false - console.debug('engine stopped') return } @@ -92,7 +91,6 @@ export async function fetchUpdate(this: EngineContext) { this.retry.value = -1 this.isActive = false this.shouldStop = false - console.debug('engine stopped') return } } diff --git a/client/src/composables/engine/startStop.ts b/client/src/composables/engine/startStop.ts index b3f7e1b..8a957c2 100644 --- a/client/src/composables/engine/startStop.ts +++ b/client/src/composables/engine/startStop.ts @@ -18,7 +18,6 @@ export function start(this: EngineContext): void { this.isConnected.value = true this.fetchUpdate() - console.log('start engine') } export function stop(this: EngineContext): void { @@ -26,6 +25,5 @@ export function stop(this: EngineContext): void { useAlert().clearAlert() this.shouldStop = true this.isConnected.value = true - console.log('shut down engine') } } \ No newline at end of file