Skip to content

Commit 431c2da

Browse files
committed
refactor(logging): lower log level for file size warnings to debug
1 parent 2317df6 commit 431c2da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gitingest/ingestion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def _process_node(node: FileSystemNode, query: IngestionQuery, stats: FileSystem
115115
_process_symlink(path=sub_path, parent_node=node, stats=stats, local_path=query.local_path)
116116
elif sub_path.is_file():
117117
if sub_path.stat().st_size > query.max_file_size:
118-
logger.warning(
118+
logger.debug(
119119
"Skipping file: would exceed max file size limit",
120120
extra={
121121
"file_path": str(sub_path),

0 commit comments

Comments
 (0)