Skip to content

Commit

Permalink
Make debug message about resolving extern crate statements more hel…
Browse files Browse the repository at this point in the history
…pful
  • Loading branch information
bkoropoff committed Sep 12, 2014
1 parent 06c0b1d commit f9888ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc/metadata/creader.rs
Expand Up @@ -145,7 +145,7 @@ fn extract_crate_info(e: &Env, i: &ast::ViewItem) -> Option<CrateInfo> {
match i.node {
ast::ViewItemExternCrate(ident, ref path_opt, id) => {
let ident = token::get_ident(ident);
debug!("resolving extern crate stmt. ident: {:?} path_opt: {:?}",
debug!("resolving extern crate stmt. ident: {} path_opt: {}",
ident, path_opt);
let name = match *path_opt {
Some((ref path_str, _)) => {
Expand Down

0 comments on commit f9888ac

Please sign in to comment.