Skip to content

Commit

Permalink
lower log level to avoid false alarm
Browse files Browse the repository at this point in the history
  • Loading branch information
r0xsh committed Feb 12, 2025
1 parent cef8dee commit 2b90e72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Command/SyncTransportersCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
try {
$this->setup($transporterName);
} catch (Exception $e) {
$this->transporterLogger->critical(
$this->transporterLogger->warning(
sprintf('Failed to setup transporter %s: %s', $this->transporter, $e->getMessage()),
['transporter' => $this->transporter]
);
Expand All @@ -164,7 +164,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int

$config = $this->params->get('transporters_config');
if (!($config[$this->transporter]['enabled'] ?? false)) {
$this->transporterLogger->critical(
$this->transporterLogger->warning(
sprintf('%s is not configured or enabled', $this->transporter),
['transporter' => $this->transporter]
);
Expand Down

0 comments on commit 2b90e72

Please sign in to comment.