Skip to content

Commit

Permalink
PISHPS-350: reduced log output of ExpireOrderTaskHandler; added type …
Browse files Browse the repository at this point in the history
…check to CancelLineController
  • Loading branch information
m-muxfeld-diw committed Sep 5, 2024
1 parent 904f7be commit 6e05e54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Controller/Api/Order/CancelLineController.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function statusAction(Request $request, Context $context): Response
/** @var OrderLine $line */
foreach ($lines as $line) {
$metadata = $line->metadata;
if (! property_exists($metadata, 'orderLineItemId')) {
if (!is_object($metadata) || ! property_exists($metadata, 'orderLineItemId')) {
continue;
}
$id = $metadata->orderLineItemId;
Expand Down
2 changes: 1 addition & 1 deletion src/ScheduledTask/OrderStatus/ExpireOrderTaskHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct(ScheduledTaskRepositoryInterface $scheduledTaskRepos

public function run(): void
{
$this->logger->info('Start resetting in_progress orders');
$this->logger->debug('Start resetting in_progress orders');

$context = new Context(new SystemSource());

Expand Down

0 comments on commit 6e05e54

Please sign in to comment.