Skip to content

Commit

Permalink
Reduce logging level for payout paging
Browse files Browse the repository at this point in the history
This seems to be stable and I've seen it working as expected in the logs this week
  • Loading branch information
NoelLH committed Sep 17, 2021
1 parent 734d961 commit 6e9e1be
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/Application/Messenger/Handler/StripePayoutHandler.php
Expand Up @@ -78,10 +78,7 @@ public function __invoke(StripePayout $payout): void
// a transaction Id.
if ($hasMore && $lastBalanceTransactionId !== null) {
$attributes['starting_after'] = $lastBalanceTransactionId;

// We can probably reduce this to `debug()` level once we are 100% confident
// in the fix for MAT-181.
$this->logger->info(sprintf(
$this->logger->debug(sprintf(
'Stripe Balance Transaction for Payout ID %s will next use starting_after: %s',
$payoutId,
$lastBalanceTransactionId,
Expand Down

0 comments on commit 6e9e1be

Please sign in to comment.