Log to stderr by default. (#1266)

Change the default from file-per-thread-logger to pretty-env-logger,
which is more common in Rust projects, and change the option from `-d`
to `--log-to-files`.
This commit is contained in:
Dan Gohman
2020-03-10 07:36:56 -07:00
committed by GitHub
parent 674a6208d8
commit ac0ee271b1
6 changed files with 40 additions and 14 deletions

View File

@@ -54,11 +54,11 @@ impl WasmToObjCommand {
}
fn handle_module(&self) -> Result<()> {
if self.common.debug {
pretty_env_logger::init();
} else {
if self.common.log_to_files {
let prefix = "wasm2obj.dbg.";
init_file_per_thread_logger(prefix);
} else {
pretty_env_logger::init();
}
let cache_config = if self.common.disable_cache {