We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7734cb8 commit 9057936Copy full SHA for 9057936
compiler/rustc_metadata/src/locator.rs
@@ -236,7 +236,7 @@ use std::fmt::Write as _;
236
use std::io::{Read, Result as IoResult, Write};
237
use std::path::{Path, PathBuf};
238
use std::{cmp, fmt, fs};
239
-use tracing::{debug, info, warn};
+use tracing::{debug, info};
240
241
#[derive(Clone)]
242
crate struct CrateLocator<'a> {
@@ -549,7 +549,7 @@ impl<'a> CrateLocator<'a> {
549
}
550
551
Err(err) => {
552
- warn!("no metadata found: {}", err);
+ info!("no metadata found: {}", err);
553
continue;
554
555
};
0 commit comments