remove logging

This commit is contained in:
Peter Clement 2023-05-31 09:42:44 +01:00
parent 3f9edcff5c
commit 702c908ae8
1 changed files with 0 additions and 6 deletions

View File

@ -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)