Skip to content

Commit

Permalink
feat: change call_handle_ops log to error
Browse files Browse the repository at this point in the history
  • Loading branch information
andysim3d committed Feb 19, 2025
1 parent 01e8651 commit 4261dba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/provider/src/alloy/entry_point/v0_6.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,12 @@ where
if let Some(revert) = resp.as_revert_data() {
Ok(Self::decode_handle_ops_revert(&resp.message, &revert))
} else {
tracing::debug!("handle_ops failed with request: {:?}", tx);
tracing::error!("handle_ops failed with request: {:?}", tx);
Err(TransportError::ErrorResp(resp).into())
}
}
Err(error) => {
tracing::debug!("handle_ops failed with request: {:?}", tx);
tracing::error!("handle_ops failed with request: {:?}", tx);
Err(error.into())
}
}
Expand Down
4 changes: 2 additions & 2 deletions crates/provider/src/alloy/entry_point/v0_7.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,12 +267,12 @@ where
if let Some(revert_data) = resp.as_revert_data() {
Ok(Self::decode_handle_ops_revert(&resp.message, &revert_data))
} else {
tracing::debug!("handle_ops failed with request: {:?}", tx);
tracing::error!("handle_ops failed with request: {:?}", tx);
Err(TransportError::ErrorResp(resp).into())
}
}
Err(error) => {
tracing::debug!("handle_ops failed with request: {:?}", tx);
tracing::error!("handle_ops failed with request: {:?}", tx);
Err(error.into())
}
}
Expand Down

0 comments on commit 4261dba

Please sign in to comment.