Skip to content

Commit a5009b4

Browse files
authored
Merge pull request #64 from ppavlovic/master
Log tasker profiler output based on task status and exec time
2 parents 261eab6 + 1b15319 commit a5009b4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"php" : ">=7.3",
3636
"ext-json" : "*",
3737
"ext-curl" : "*",
38-
"g4/runner" : ">=0.26.0",
38+
"g4/runner" : ">=0.26.1",
3939
"g4/utility" : "*",
4040
"g4/value-object" : "*",
4141
"g4/version" : "^0.0.2",

src/Data/TaskerExecution.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private function getRawDataStart()
8484
private function getRawDataEnd()
8585
{
8686
$profilerOutput = $this->profiler
87-
? $this->profiler->getTaskerProfilerOutput($this->task->getExecTime())
87+
? $this->profiler->getTaskerProfilerOutput($this->task->getStatus(), $this->task->getExecTime())
8888
: null;
8989

9090
$rawData = [

0 commit comments

Comments
 (0)