We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e30fe0 commit 3e05984Copy full SHA for 3e05984
1 file changed
odra-casper/rpc-client/src/casper_client/transactions.rs
@@ -259,7 +259,7 @@ impl super::CasperClient {
259
casper_client::Error::ResponseIsRpcError {
260
rpc_method, error, ..
261
} => {
262
- log::debug(format!(
+ log::error(format!(
263
"[TX] Received RPC error for method {}: {}.",
264
rpc_method, error
265
));
@@ -271,7 +271,7 @@ impl super::CasperClient {
271
)
272
}
273
_ => {
274
- log::debug(format!("Failed to put transaction: {}.", e));
+ log::error(format!("Failed to put transaction: {}.", e));
275
ExecutionError(format!("Failed to put transaction: {}", e))
276
277
})?;
0 commit comments