prints to logger

This commit is contained in:
NikVolf
2017-05-05 15:51:08 +03:00
parent cb4f16d453
commit 8fca2a9eb6
5 changed files with 45 additions and 11 deletions

View File

@ -1,8 +1,13 @@
extern crate parity_wasm;
extern crate env_logger;
#[macro_use] extern crate log;
#[macro_use] extern crate lazy_static;
mod optimizer;
mod gas;
mod symbols;
mod logger;
pub use optimizer::optimize;
pub use gas::inject_gas_counter;
pub use gas::inject_gas_counter;
pub use logger::init_log;