logging improvements

This commit is contained in:
Christien Rioux
2024-03-01 11:38:03 -05:00
parent 292664f3fe
commit ef6ecdab79
19 changed files with 1920 additions and 1500 deletions

View File

@@ -69,7 +69,7 @@ macro_rules! log_rpc {
(warn $fmt:literal, $($arg:expr),+) => {
warn!(target:"rpc", $fmt, $($arg),+);
};
(debug $text:expr) => { error!(
(debug $text:expr) => { debug!(
target: "rpc",
"{}",
$text,