X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Futil%2Flogger.rs;h=aac83f42a3c2f82a5520fc380f4006ca345288e2;hb=ba1349982ba28657c9e2d03a5b02c3ecc054b5cc;hp=154e26cdf454bb8d4ff513156c5e4efee7b544a1;hpb=a257906743d528c32c862b053b652d4b728aa990;p=rust-lightning diff --git a/lightning/src/util/logger.rs b/lightning/src/util/logger.rs index 154e26cd..aac83f42 100644 --- a/lightning/src/util/logger.rs +++ b/lightning/src/util/logger.rs @@ -116,7 +116,8 @@ pub struct Record<'a> { impl<'a> Record<'a> { /// Returns a new Record. - /// (C-not exported) as fmt can't be used in C + /// + /// This is not exported to bindings users as fmt can't be used in C #[inline] pub fn new(level: Level, args: fmt::Arguments<'a>, module_path: &'static str, file: &'static str, line: u32) -> Record<'a> { Record { @@ -141,7 +142,8 @@ pub trait Logger { } /// Wrapper for logging a [`PublicKey`] in hex format. -/// (C-not exported) as fmt can't be used in C +/// +/// This is not exported to bindings users as fmt can't be used in C #[doc(hidden)] pub struct DebugPubKey<'a>(pub &'a PublicKey); impl<'a> core::fmt::Display for DebugPubKey<'a> { @@ -154,7 +156,8 @@ impl<'a> core::fmt::Display for DebugPubKey<'a> { } /// Wrapper for logging byte slices in hex format. -/// (C-not exported) as fmt can't be used in C +/// +/// This is not exported to bindings users as fmt can't be used in C #[doc(hidden)] pub struct DebugBytes<'a>(pub &'a [u8]); impl<'a> core::fmt::Display for DebugBytes<'a> {