diff --git a/bindings/nodejs/src/client.rs b/bindings/nodejs/src/client.rs index 643fead784..13697a3c0c 100644 --- a/bindings/nodejs/src/client.rs +++ b/bindings/nodejs/src/client.rs @@ -53,7 +53,7 @@ impl ClientMethodHandler { (msg, is_err) } Err(e) => { - log::debug!("{:?}", e); + log::error!("{:?}", e); (format!("Couldn't parse to method with error - {e:?}"), true) } } diff --git a/bindings/nodejs/src/secret_manager.rs b/bindings/nodejs/src/secret_manager.rs index cf0b6d8019..7c5531638f 100644 --- a/bindings/nodejs/src/secret_manager.rs +++ b/bindings/nodejs/src/secret_manager.rs @@ -56,7 +56,7 @@ impl SecretManagerMethodHandler { (msg, is_err) } Err(e) => { - log::debug!("{:?}", e); + log::error!("{:?}", e); (format!("Couldn't parse to method with error - {e:?}"), true) } } diff --git a/bindings/nodejs/src/wallet.rs b/bindings/nodejs/src/wallet.rs index adc85c6f02..ad3ae44380 100644 --- a/bindings/nodejs/src/wallet.rs +++ b/bindings/nodejs/src/wallet.rs @@ -58,7 +58,7 @@ impl WalletMethodHandler { (msg, is_err) } Err(e) => { - log::debug!("{:?}", e); + log::error!("{:?}", e); ( serde_json::to_string(&Response::Error(e.into())).expect("json to string error"), true, diff --git a/sdk/src/client/node_manager/syncing.rs b/sdk/src/client/node_manager/syncing.rs index 988e98d761..444a9f063e 100644 --- a/sdk/src/client/node_manager/syncing.rs +++ b/sdk/src/client/node_manager/syncing.rs @@ -83,7 +83,7 @@ impl ClientInner { } } } else { - log::debug!("{} is not healthy: {:?}", node.url, info); + log::warn!("{} is not healthy: {:?}", node.url, info); } } Err(err) => {