Replace ethcore-logger with env-logger. (#10102)

* Replace ethcore-logger with env-logger.

* Fix logger initialization in WASM tests.

* uncomment logger initialization in secret store

* Don't use ethcore-logger in whisper.

* Move ethcore-logger within parity dir.

* Uncomment rest from secret-store.

* Use `let _ =` in private_contract for consistency

* `ok()` to `let _ =` fix in service

* Use `let _ = ` for state_db
This commit is contained in:
Tomasz Drwięga
2019-01-08 15:07:20 +01:00
committed by Marek Kotewicz
parent ce5f704dd5
commit ab22d5e278
42 changed files with 128 additions and 143 deletions

View File

@@ -12,7 +12,7 @@ ethjson = { path = "../../../json" }
vm = { path = "../../vm" }
wasm = { path = "../" }
clap = "2.24"
ethcore-logger = { path = "../../../logger" }
env_logger = "0.5"
rustc-hex = "1"
[features]

View File

@@ -22,8 +22,8 @@ extern crate ethjson;
extern crate wasm;
extern crate vm;
extern crate clap;
extern crate ethcore_logger;
extern crate rustc_hex;
extern crate env_logger;
mod fixture;
mod runner;
@@ -33,7 +33,7 @@ use clap::{App, Arg};
use std::fs;
fn main() {
::ethcore_logger::init_log();
::env_logger::init();
let matches = App::new("pwasm-run-test")
.arg(Arg::with_name("target")