lightning/util/
macro_logger.rs1use crate::ln::types::ChannelId;
11use crate::sign::SpendableOutputDescriptor;
12
13use bitcoin::transaction::Transaction;
14
15use crate::ln::chan_utils::HTLCClaim;
16use crate::routing::router::Route;
17
18macro_rules! log_iter {
19 ($obj: expr) => {
20 $crate::util::logger::DebugIter($obj)
21 };
22}
23
24#[macro_export]
26macro_rules! log_pubkey {
27 ($obj: expr) => {
28 $crate::util::logger::DebugPubKey(&$obj)
29 };
30}
31
32#[macro_export]
34macro_rules! log_bytes {
35 ($obj: expr) => {
36 $crate::util::logger::DebugBytes(&$obj)
37 };
38}
39
40pub(crate) struct DebugFundingInfo<'a>(pub &'a ChannelId);
41impl<'a> core::fmt::Display for DebugFundingInfo<'a> {
42 fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
43 self.0.fmt(f)
44 }
45}
46macro_rules! log_funding_info {
47 ($key_storage: expr) => {
48 $crate::util::macro_logger::DebugFundingInfo(&$key_storage.channel_id())
49 };
50}
51
52pub(crate) struct DebugRoute<'a>(pub &'a Route);
53impl<'a> core::fmt::Display for DebugRoute<'a> {
54 fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
55 for (idx, p) in self.0.paths.iter().enumerate() {
56 writeln!(f, "path {}:", idx)?;
57 for h in p.hops.iter() {
58 writeln!(
59 f,
60 " node_id: {}, short_channel_id: {}, fee_msat: {}, cltv_expiry_delta: {}",
61 log_pubkey!(h.pubkey),
62 h.short_channel_id,
63 h.fee_msat,
64 h.cltv_expiry_delta
65 )?;
66 }
67 writeln!(f, " blinded_tail: {:?}", p.blinded_tail)?;
68 }
69 Ok(())
70 }
71}
72macro_rules! log_route {
73 ($obj: expr) => {
74 $crate::util::macro_logger::DebugRoute(&$obj)
75 };
76}
77
78pub(crate) struct DebugTx<'a>(pub &'a Transaction);
79impl<'a> core::fmt::Display for DebugTx<'a> {
80 fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
81 if self.0.input.len() >= 1 && self.0.input.iter().any(|i| !i.witness.is_empty()) {
82 let first_input = &self.0.input[0];
83 let witness_script_len = first_input.witness.last().unwrap_or(&[]).len();
84 if self.0.input.len() == 1
85 && witness_script_len == 71
86 && (first_input.sequence.0 >> 8 * 3) as u8 == 0x80
87 {
88 write!(f, "commitment tx ")?;
89 } else if self.0.input.len() == 1 && witness_script_len == 71 {
90 write!(f, "closing tx ")?;
91 } else if self.0.input.len() == 1
92 && HTLCClaim::from_witness(&first_input.witness) == Some(HTLCClaim::OfferedTimeout)
93 {
94 write!(f, "HTLC-timeout tx ")?;
95 } else if self.0.input.len() == 1
96 && HTLCClaim::from_witness(&first_input.witness)
97 == Some(HTLCClaim::AcceptedPreimage)
98 {
99 write!(f, "HTLC-success tx ")?;
100 } else {
101 let mut num_preimage = 0;
102 let mut num_timeout = 0;
103 let mut num_revoked = 0;
104 for inp in &self.0.input {
105 let htlc_claim = HTLCClaim::from_witness(&inp.witness);
106 match htlc_claim {
107 Some(HTLCClaim::AcceptedPreimage) | Some(HTLCClaim::OfferedPreimage) => {
108 num_preimage += 1
109 },
110 Some(HTLCClaim::AcceptedTimeout) | Some(HTLCClaim::OfferedTimeout) => {
111 num_timeout += 1
112 },
113 Some(HTLCClaim::Revocation) => num_revoked += 1,
114 None => continue,
115 }
116 }
117 if num_preimage > 0 || num_timeout > 0 || num_revoked > 0 {
118 write!(
119 f,
120 "HTLC claim tx ({} preimage, {} timeout, {} revoked) ",
121 num_preimage, num_timeout, num_revoked
122 )?;
123 }
124 }
125 } else {
126 debug_assert!(false, "We should never generate unknown transaction types");
127 write!(f, "unknown tx type ").unwrap();
128 }
129 write!(f, "with txid {}", self.0.compute_txid())?;
130 Ok(())
131 }
132}
133
134macro_rules! log_tx {
135 ($obj: expr) => {
136 $crate::util::macro_logger::DebugTx(&$obj)
137 };
138}
139
140pub(crate) struct DebugSpendable<'a>(pub &'a SpendableOutputDescriptor);
141impl<'a> core::fmt::Display for DebugSpendable<'a> {
142 fn fmt(&self, f: &mut core::fmt::Formatter) -> Result<(), core::fmt::Error> {
143 match self.0 {
144 &SpendableOutputDescriptor::StaticOutput { ref outpoint, .. } => {
145 write!(f, "StaticOutput {}:{} marked for spending", outpoint.txid, outpoint.index)?;
146 },
147 &SpendableOutputDescriptor::DelayedPaymentOutput(ref descriptor) => {
148 write!(
149 f,
150 "DelayedPaymentOutput {}:{} marked for spending",
151 descriptor.outpoint.txid, descriptor.outpoint.index
152 )?;
153 },
154 &SpendableOutputDescriptor::StaticPaymentOutput(ref descriptor) => {
155 write!(
156 f,
157 "StaticPaymentOutput {}:{} marked for spending",
158 descriptor.outpoint.txid, descriptor.outpoint.index
159 )?;
160 },
161 }
162 Ok(())
163 }
164}
165
166macro_rules! log_spendable {
167 ($obj: expr) => {
168 $crate::util::macro_logger::DebugSpendable(&$obj)
169 };
170}
171
172#[doc(hidden)]
175#[macro_export]
176macro_rules! log_given_level {
177 ($logger: expr, $lvl:expr, $($arg:tt)+) => (
178 $logger.log($crate::util::logger::Record::new($lvl, None, None, format_args!($($arg)+), module_path!(), file!(), line!(), None))
179 );
180}
181
182#[macro_export]
184macro_rules! log_error {
185 ($logger: expr, $($arg:tt)*) => (
186 $crate::log_given_level!($logger, $crate::util::logger::Level::Error, $($arg)*);
187 )
188}
189
190#[macro_export]
192macro_rules! log_warn {
193 ($logger: expr, $($arg:tt)*) => (
194 $crate::log_given_level!($logger, $crate::util::logger::Level::Warn, $($arg)*);
195 )
196}
197
198#[macro_export]
200macro_rules! log_info {
201 ($logger: expr, $($arg:tt)*) => (
202 $crate::log_given_level!($logger, $crate::util::logger::Level::Info, $($arg)*);
203 )
204}
205
206#[macro_export]
208macro_rules! log_debug {
209 ($logger: expr, $($arg:tt)*) => (
210 $crate::log_given_level!($logger, $crate::util::logger::Level::Debug, $($arg)*);
211 )
212}
213
214#[macro_export]
216macro_rules! log_trace {
217 ($logger: expr, $($arg:tt)*) => (
218 $crate::log_given_level!($logger, $crate::util::logger::Level::Trace, $($arg)*)
219 )
220}
221
222#[macro_export]
224macro_rules! log_gossip {
225 ($logger: expr, $($arg:tt)*) => (
226 $crate::log_given_level!($logger, $crate::util::logger::Level::Gossip, $($arg)*);
227 )
228}