diff --git a/src/librustc/metadata/loader.rs b/src/librustc/metadata/loader.rs index 12bfcb4b1983c..902ff8308894c 100644 --- a/src/librustc/metadata/loader.rs +++ b/src/librustc/metadata/loader.rs @@ -131,7 +131,7 @@ impl Context { FileDoesntMatch }, _ => { - debug!("could not load metadata for {}", + debug!("{} does not exist, no metadata found", path.display()); FileDoesntMatch } @@ -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()) } } }