Skip to content

Commit

Permalink
Fix a missing parameter in call to Log::create( )
Browse files Browse the repository at this point in the history
  • Loading branch information
LionelLaffineur authored Oct 6, 2023
1 parent c06e153 commit 31c3a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Skeleton/Transaction/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public function mark_failed($output, $exception, $date = null) {
* @param string $date
*/
public function mark_completed($output, $date = null) {
Log::create($this, false, $output, $date);
Log::create($this, false, $output, null, $date);

// Don't mark this transaction as completed if it has been rescheduled.
if ($this->rescheduled) {
Expand Down

0 comments on commit 31c3a64

Please sign in to comment.