Skip to content

Commit

Permalink
fix(backend): Logger string concatenation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
TyIsI committed Jan 5, 2025
1 parent 91b89e5 commit 9c592d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/monitors/StripeEventMonitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class StripeEventMonitor extends Monitor {
private $logger;

public function handleCreated($args) {
$this->logger->log(__METHOD__ + ': ' + json_encode($args, 1));
$this->logger->log(__METHOD__ . ': ' . json_encode($args, 1));

/** @var StripeEvent $stripe_event */
$stripe_event = $args[0];
Expand Down

0 comments on commit 9c592d0

Please sign in to comment.