macro_rules! debug_println {
() => { ... };
($($arg:tt)*) => { ... };
}Expand description
Appends a formatted string to the debug_message buffer, as per debug_print but
with a newline appended.
ยงNote
This depends on the debug_message interface which requires the
"pallet-contracts/unstable-interface" feature to be enabled in the target runtime.