Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/librustc/metadata/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ impl Context {
FileDoesntMatch
},
_ => {
debug!("could not load metadata for {}",
debug!("{} does not exist, no metadata found",
path.display());
FileDoesntMatch
}
Expand Down Expand Up @@ -385,7 +385,7 @@ pub fn list_file_metadata(intr: @IdentInterner,
bytes.as_slice(),
out),
option::None => {
write!(out, "could not find metadata in {}.\n", path.display())
write!(out, "{} could not be found, no metadata exists.\n", path.display())
}
}
}