@@ -742,7 +742,7 @@ async def _download_episodes(self, download_range: RangeType, webtoon_directory:
742742 else :
743743 self .progress .stop ()
744744
745- async def _episode_skipped (self , reason : DownloadStatus , description : str , * , debug : bool = False , episode_no , ** context ):
745+ async def _episode_skipped (self , reason : DownloadStatus , description : str , * , no_progress : bool = False , episode_no , ** context ):
746746 """에피소드 다운로드를 건너뛸 때 사용하는 콜백입니다."""
747747 if (ep_title := self .episode_titles [episode_no ]) is None :
748748 short_ep_title = f"#{ episode_no + 1 } "
@@ -764,7 +764,7 @@ async def _episode_skipped(self, reason: DownloadStatus, description: str, *, de
764764
765765 self .download_status [episode_no ] = reason
766766
767- if debug :
767+ if no_progress :
768768 await self .async_callback (
769769 "download_skipped" ,
770770 _crate_callback (
@@ -779,6 +779,7 @@ async def _episode_skipped(self, reason: DownloadStatus, description: str, *, de
779779 _crate_callback (
780780 msg_format ,
781781 progress_update = "{short_ep_title} skipped" ,
782+ level = "debug" ,
782783 ),
783784 ** context ,
784785 )
@@ -787,7 +788,7 @@ async def _download_episode(self, episode_no: int, webtoon_directory: Path) -> N
787788 episode_title = self .episode_titles [episode_no ]
788789 context : dict = dict (episode_no = episode_no , short_ep_title = episode_title and _shorten (episode_title ))
789790 if episode_title is None :
790- return await self ._episode_skipped ("not_downloadable" , "because the episode has empty title" , debug = True , ** context )
791+ return await self ._episode_skipped ("not_downloadable" , "because the episode has empty title" , no_progress = True , ** context )
791792 now = datetime .now ()
792793 directory_name = self ._safe_name (
793794 self ._episode_directory_format .format (
0 commit comments