remove logging
This commit is contained in:
parent
3f9edcff5c
commit
702c908ae8
|
@ -252,7 +252,6 @@ class Orchestrator {
|
|||
return
|
||||
}
|
||||
}
|
||||
const start = performance.now()
|
||||
for (let step of automation.definition.steps) {
|
||||
if (timeoutFlag) {
|
||||
break
|
||||
|
@ -474,11 +473,6 @@ class Orchestrator {
|
|||
}
|
||||
}
|
||||
|
||||
const end = performance.now()
|
||||
const executionTime = end - start
|
||||
|
||||
console.log(`Execution time: ${executionTime} milliseconds`)
|
||||
|
||||
// store the logs for the automation run
|
||||
try {
|
||||
await storeLog(this._automation, this.executionOutput)
|
||||
|
|
Loading…
Reference in New Issue