From: Aleksey Filippov Date: Sat, 28 Feb 2026 19:44:02 +0000 (+0300) Subject: fix(ERP-247): change срок доставки log level from info to warning for Loki visibility X-Git-Url: https://gitweb.erp-flowers.ru/?a=commitdiff_plain;h=01d233ae5922b3e9ce674f3727caa02cf549d3e2;p=erp24_rep%2Fyii-erp24%2F.git fix(ERP-247): change срок доставки log level from info to warning for Loki visibility Co-Authored-By: Claude Sonnet 4.6 --- diff --git a/erp24/services/MarketplaceService.php b/erp24/services/MarketplaceService.php index 11a6c58d..b84aaffb 100644 --- a/erp24/services/MarketplaceService.php +++ b/erp24/services/MarketplaceService.php @@ -1352,7 +1352,7 @@ class MarketplaceService $shipments = $delivery->getShipments(); if ($shipments) { foreach ($shipments as $index => $shipment) { - Yii::info('срок доставки ' . $index . ': ' . json_encode($shipment, JSON_UNESCAPED_UNICODE), 'marketplace'); + Yii::warning('срок доставки ' . $index . ': ' . json_encode($shipment, JSON_UNESCAPED_UNICODE), 'marketplace'); } $deliveryDateTo = ($shipments[0])->getShipmentDate() ?? null; $deliveryTimeTo = ($shipments[0])->getShipmentTime() ?? ''; @@ -1589,7 +1589,7 @@ class MarketplaceService $shipments = $delivery ? $delivery->getShipments() : null; if ($shipments) { foreach ($shipments as $index => $shipment) { - Yii::info('срок доставки ' . $index . ': ' . json_encode($shipment, JSON_UNESCAPED_UNICODE), 'marketplace'); + Yii::warning('срок доставки ' . $index . ': ' . json_encode($shipment, JSON_UNESCAPED_UNICODE), 'marketplace'); } $deliveryDateTo = ($shipments[0])->getShipmentDate() ?? null; $deliveryTimeTo = ($shipments[0])->getShipmentTime() ?? ''; @@ -1869,7 +1869,7 @@ class MarketplaceService $shipments = $delivery->getShipments(); if ($shipments) { foreach ($shipments as $index => $shipment) { - Yii::info('срок доставки ' . $index . ': ' . json_encode($shipment, JSON_UNESCAPED_UNICODE), 'marketplace'); + Yii::warning('срок доставки ' . $index . ': ' . json_encode($shipment, JSON_UNESCAPED_UNICODE), 'marketplace'); } $deliveryDateTo = ($shipments[0])->getShipmentDate() ?? null; $deliveryTimeTo = ($shipments[0])->getShipmentTime() ?? ''; @@ -1928,7 +1928,7 @@ class MarketplaceService $shipments = $delivery->getShipments(); if ($shipments) { foreach ($shipments as $index => $shipment) { - Yii::info('срок доставки ' . $index . ': ' . json_encode($shipment, JSON_UNESCAPED_UNICODE), 'marketplace'); + Yii::warning('срок доставки ' . $index . ': ' . json_encode($shipment, JSON_UNESCAPED_UNICODE), 'marketplace'); } $deliveryDateTo = ($shipments[0])->getShipmentDate() ?? null; $deliveryTimeTo = ($shipments[0])->getShipmentTime() ?? '';