Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9057936

Browse files
committedNov 3, 2021
Demote metadata load warning to "info".
1 parent 7734cb8 commit 9057936

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎compiler/rustc_metadata/src/locator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ use std::fmt::Write as _;
236236
use std::io::{Read, Result as IoResult, Write};
237237
use std::path::{Path, PathBuf};
238238
use std::{cmp, fmt, fs};
239-
use tracing::{debug, info, warn};
239+
use tracing::{debug, info};
240240

241241
#[derive(Clone)]
242242
crate struct CrateLocator<'a> {
@@ -549,7 +549,7 @@ impl<'a> CrateLocator<'a> {
549549
}
550550
}
551551
Err(err) => {
552-
warn!("no metadata found: {}", err);
552+
info!("no metadata found: {}", err);
553553
continue;
554554
}
555555
};

0 commit comments

Comments
 (0)
Please sign in to comment.