replace error logging with log_err in stdlib and rustc

This commit is contained in:
Marijn Haverbeke 2011-04-19 12:02:06 +02:00
parent 6d3a423094
commit 6511d471ba
16 changed files with 132 additions and 132 deletions

View file

@ -1400,7 +1400,7 @@ fn type_to_str_inner(type_names names,
case (13) { ret "Vector"; }
case (14) { ret "Metadata"; }
case (_) {
log "unknown TypeKind" + util.common.istr(kind as int);
log_err #fmt("unknown TypeKind %d", kind as int);
fail;
}
}