From 41a5fb91f3c7b770491c07847439a75e3e07d77a Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 2 May 2025 15:59:52 +0300 Subject: [PATCH] refactor: remove redundant data logging in conflict handling for stock updates --- marketplaces/wildberries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/marketplaces/wildberries.py b/marketplaces/wildberries.py index ceaa489..922349c 100644 --- a/marketplaces/wildberries.py +++ b/marketplaces/wildberries.py @@ -85,7 +85,7 @@ class WildberriesMarketplaceApi(BaseMarketplaceApi): response_data = await response.json() logging.warning( - f'Conflict occurred when sending stocks to [{self.marketplace.id}]: {data}') + f'Conflict occurred when sending stocks to [{self.marketplace.id}]') await asyncio.sleep(1) chunk = self._filter_chunk_with_conflict(chunk, response_data) continue