feat: ログ文言修正

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2023-04-18 19:14:36 +09:00
parent e27757e3ee
commit bdcb02867e

View File

@ -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