Skip to content

Commit 376954e

Browse files
committed
fix: demote missing config file warning to debug level
1 parent 6cd765e commit 376954e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ fn do_main() -> Result<i32> {
201201
for path in &config_paths {
202202
match AbsPath::try_from(path) {
203203
Ok(_) => {}, // do nothing on success
204-
Err(_) => eprintln!("Warning: Could not find a lintrunner config at: '{}'. Continuing without using configuration file.", path),
204+
Err(_) => debug!("Could not find a lintrunner config at: '{}'. Continuing without using configuration file.", path),
205205
}
206206
}
207207

0 commit comments

Comments
 (0)