@@ -1251,9 +1251,10 @@ where L::Target: Logger {
1251
1251
|info| info. features . supports_basic_mpp ( ) ) )
1252
1252
} else { false } ;
1253
1253
1254
- log_trace ! ( logger, "Searching for a route from payer {} to payee {} {} MPP and {} first hops {}overriding the network graph" , our_node_pubkey,
1255
- maybe_dummy_payee_pk, if allow_mpp { "with" } else { "without" } ,
1256
- first_hops. map( |hops| hops. len( ) ) . unwrap_or( 0 ) , if first_hops. is_some( ) { "" } else { "not " } ) ;
1254
+ log_trace ! ( logger, "Searching for a route from payer {} to {}payee id {} {} MPP and {} first hops {}overriding the network graph" , our_node_pubkey,
1255
+ if payee_node_id_opt. is_none( ) { "dummy" } else { "" } , maybe_dummy_payee_pk,
1256
+ if allow_mpp { "with" } else { "without" } , first_hops. map( |hops| hops. len( ) ) . unwrap_or( 0 ) ,
1257
+ if first_hops. is_some( ) { "" } else { "not " } ) ;
1257
1258
1258
1259
// Step (1).
1259
1260
// Prepare the data we'll use for payee-to-payer search by
@@ -1355,8 +1356,9 @@ where L::Target: Logger {
1355
1356
} ) ;
1356
1357
}
1357
1358
1358
- log_trace ! ( logger, "Building path from payee with node id {} to payer {} for value {} msat." ,
1359
- maybe_dummy_payee_pk, our_node_pubkey, final_value_msat) ;
1359
+ log_trace ! ( logger, "Building path from {}payee node id {} to payer {} for value {} msat." ,
1360
+ if payee_node_id_opt. is_none( ) { "dummy" } else { "" } , maybe_dummy_payee_pk, our_node_pubkey,
1361
+ final_value_msat) ;
1360
1362
1361
1363
macro_rules! add_entry {
1362
1364
// Adds entry which goes from $src_node_id to $dest_node_id over the $candidate hop.
0 commit comments