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