File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1236,7 +1236,7 @@ fn build_with_store_internal(
1236
1236
fn setup_logger ( config : & Config ) -> Result < Arc < FilesystemLogger > , BuildError > {
1237
1237
let log_dir = match & config. log_dir_path {
1238
1238
Some ( log_dir) => String :: from ( log_dir) ,
1239
- None => config. storage_dir_path . clone ( ) + "/logs" ,
1239
+ None => config. storage_dir_path . clone ( ) ,
1240
1240
} ;
1241
1241
1242
1242
Ok ( Arc :: new (
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ fn start_stop_reinit() {
232
232
node. sync_wallets ( ) . unwrap ( ) ;
233
233
assert_eq ! ( node. list_balances( ) . spendable_onchain_balance_sats, expected_amount. to_sat( ) ) ;
234
234
235
- let log_file = format ! ( "{}/logs/ ldk_node.log" , config. clone( ) . storage_dir_path) ;
235
+ let log_file = format ! ( "{}/ldk_node.log" , config. clone( ) . storage_dir_path) ;
236
236
assert ! ( std:: path:: Path :: new( & log_file) . exists( ) ) ;
237
237
238
238
node. stop ( ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments