Skip to content

Commit 7efe9b8

Browse files
tianzhouclaude
andcommitted
chore: demote "no ignore file found" log from Info to Debug
The not-found case is the default expected state and fired on every plan/apply/dump run, logging louder than the successful-load case (already Debug). Demote to Debug for consistency and less noise. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent e175445 commit 7efe9b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/util/ignoreloader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func LoadIgnoreFileWithStructureFromPath(filePath string) (*ir.IgnoreConfig, err
126126
// Check if file exists
127127
if _, err := os.Stat(filePath); os.IsNotExist(err) {
128128
// File doesn't exist, return nil config (no filtering).
129-
logger.Get().Info("no ignore file found, no filtering applied",
129+
logger.Get().Debug("no ignore file found, no filtering applied",
130130
"file", absPath)
131131
return nil, nil
132132
} else if err != nil {

0 commit comments

Comments
 (0)