chore: remove debug output

This commit is contained in:
Settel 2022-09-25 17:27:52 +02:00
parent d9c73a7929
commit 05680286ad
2 changed files with 0 additions and 4 deletions

View File

@ -29,7 +29,6 @@ export async function fetchUpdate(this: EngineContext) {
useAlert().clearAlert() useAlert().clearAlert()
this.isActive = false this.isActive = false
this.shouldStop = false this.shouldStop = false
console.debug('engine stopped')
return return
} }
@ -92,7 +91,6 @@ export async function fetchUpdate(this: EngineContext) {
this.retry.value = -1 this.retry.value = -1
this.isActive = false this.isActive = false
this.shouldStop = false this.shouldStop = false
console.debug('engine stopped')
return return
} }
} }

View File

@ -18,7 +18,6 @@ export function start(this: EngineContext): void {
this.isConnected.value = true this.isConnected.value = true
this.fetchUpdate() this.fetchUpdate()
console.log('start engine')
} }
export function stop(this: EngineContext): void { export function stop(this: EngineContext): void {
@ -26,6 +25,5 @@ export function stop(this: EngineContext): void {
useAlert().clearAlert() useAlert().clearAlert()
this.shouldStop = true this.shouldStop = true
this.isConnected.value = true this.isConnected.value = true
console.log('shut down engine')
} }
} }