You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log_warn!($logger,"Not pruning network graph, consider enabling `std` or doing so manually with remove_stale_channels_and_tracking_with_time.");
375
-
log_trace!($logger,"Persisting network graph.");
374
+
log_warn!($logger,None,None,"Not pruning network graph, consider enabling `std` or doing so manually with remove_stale_channels_and_tracking_with_time.");
log_error!(self.logger,"Retrieved Merkle block for txid {} doesn't match expectations. This should not happen. Please verify server integrity.", txid);
285
+
log_error!(self.logger,None,None,"Retrieved Merkle block for txid {} doesn't match expectations. This should not happen. Please verify server integrity.", txid);
286
286
returnErr(InternalError::Failed);
287
287
}
288
288
@@ -299,7 +299,7 @@ where
299
299
}else{
300
300
// If any previously-confirmed block suddenly is no longer confirmed, we found
301
301
// an inconsistency and should start over.
302
-
log_trace!(self.logger,"Inconsistency: Tx {} was unconfirmed during syncing.", txid);
302
+
log_trace!(self.logger,None,None,"Inconsistency: Tx {} was unconfirmed during syncing.", txid);
303
303
returnErr(InternalError::Inconsistency);
304
304
}
305
305
}
@@ -330,7 +330,7 @@ where
330
330
331
331
unconfirmed_txs.push(txid);
332
332
}else{
333
-
log_error!(self.logger,"Untracked confirmation of funding transaction. Please ensure none of your channels had been created with LDK prior to version 0.0.113!");
333
+
log_error!(self.logger,None,None,"Untracked confirmation of funding transaction. Please ensure none of your channels had been created with LDK prior to version 0.0.113!");
334
334
panic!("Untracked confirmation of funding transaction. Please ensure none of your channels had been created with LDK prior to version 0.0.113!");
0 commit comments