File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -219,15 +219,15 @@ def _collect_markdown_files_from_source(
219219 prefix = f"{ parent_prefix } { title_tokens [0 ]} ."
220220
221221 if entry .is_dir () is True :
222- log .info (f"Processing directory: { entry } " )
222+ log .detail (f"Processing directory: { entry } " )
223223
224224 self ._collect_markdown_files_from_source (
225225 entry ,
226226 (current_depth + 1 ),
227227 prefix , markdown_files
228228 )
229229 else :
230- log .info (f"Processing: { entry } " )
230+ log .detail (f"Processing: { entry } " )
231231
232232 title = ' ' .join (title_tokens [1 :])
233233
@@ -279,7 +279,7 @@ def _collect_markdown_files_from_source(
279279 except FileNotFoundError as fileError :
280280 log .error (fileError )
281281
282- # Comment to view log
282+ # Comment out to view log file
283283 if out_dir .exists ():
284284 shutil .rmtree (out_dir )
285285
You can’t perform that action at this time.
0 commit comments