From 01d233ae5922b3e9ce674f3727caa02cf549d3e2 Mon Sep 17 00:00:00 2001 From: Aleksey Filippov Date: Sat, 28 Feb 2026 22:44:02 +0300 Subject: [PATCH] =?utf8?q?fix(ERP-247):=20change=20=D1=81=D1=80=D0=BE?= =?utf8?q?=D0=BA=20=D0=B4=D0=BE=D1=81=D1=82=D0=B0=D0=B2=D0=BA=D0=B8=20log?= =?utf8?q?=20level=20from=20info=20to=20warning=20for=20Loki=20visibility?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- erp24/services/MarketplaceService.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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() ?? ''; -- 2.39.5