Skip to content

Commit

Permalink
Import ckb_logger in ckb-test
Browse files Browse the repository at this point in the history
  • Loading branch information
eval-exec committed Apr 21, 2024
1 parent 2240df3 commit 9ba418a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use ckb_chain_spec::ChainSpec;
use ckb_error::AnyError;
use ckb_jsonrpc_types::{BlockFilter, BlockTemplate, TxPoolInfo};
use ckb_jsonrpc_types::{PoolTxDetailInfo, TxStatus};
use ckb_logger::{debug, error};
use ckb_logger::{debug, error, info};
use ckb_resource::Resource;
use ckb_types::{
bytes,
Expand Down Expand Up @@ -67,7 +67,7 @@ impl Node {

// Copy node template into node's working directory
let cells_dir = working_dir.join("specs").join("cells");
ckb_logger::info!("working_dir {:?}", working_dir);
info!("working_dir {:?}", working_dir);

fs::create_dir_all(cells_dir).expect("create node's dir");
for file in &[
Expand Down

0 comments on commit 9ba418a

Please sign in to comment.