chore: remove debug output
This commit is contained in:
parent
d9c73a7929
commit
05680286ad
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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')
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user