From aa90f9d1594f818f40e934f9f4f0af04f35220ac Mon Sep 17 00:00:00 2001 From: MexicanAce Date: Fri, 15 Sep 2023 18:08:03 +0100 Subject: [PATCH] Update yellow log to warning --- src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.rs b/src/node.rs index ec7af812..4fde9d94 100644 --- a/src/node.rs +++ b/src/node.rs @@ -559,7 +559,7 @@ impl InMemoryNodeInner { fn not_implemented( method_name: &str, ) -> jsonrpc_core::BoxFuture> { - log::info!("{}", format!("Method {} is not implemented", method_name).yellow()); + log::warn!("Method {} is not implemented", method_name); Err(jsonrpc_core::Error { data: None, code: jsonrpc_core::ErrorCode::MethodNotFound,