From bdcb02867efce92e30027475af4362c79adccebc Mon Sep 17 00:00:00 2001 From: "shimoda.m@nds-tyo.co.jp" Date: Tue, 18 Apr 2023 19:14:36 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=E3=83=AD=E3=82=B0=E6=96=87=E8=A8=80?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/batch/bio_sales/create_bio_sales_lot.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ecs/jskult-batch-daily/src/batch/bio_sales/create_bio_sales_lot.py b/ecs/jskult-batch-daily/src/batch/bio_sales/create_bio_sales_lot.py index 02080d76..be9f2164 100644 --- a/ecs/jskult-batch-daily/src/batch/bio_sales/create_bio_sales_lot.py +++ b/ecs/jskult-batch-daily/src/batch/bio_sales/create_bio_sales_lot.py @@ -7,8 +7,7 @@ logger = get_logger('生物由来卸販売ロット分解') async def exec(): """生物由来卸販売ロット分解""" - - logger.info('生物由来卸販売ロット分解:起動') + logger.debug('生物由来卸販売ロット分解:起動') # 営業日ではない場合、処理をスキップする if batch_context.is_not_business_day: logger.info('営業日ではないため、生物由来卸販売ロット分解処理をスキップします。') @@ -16,5 +15,5 @@ async def exec(): # TODO: ここに処理を追記していく - logger.info('生物由来卸販売ロット分解:終了') + logger.debug('生物由来卸販売ロット分解:終了') return