Skip to content

Commit

Permalink
Random change (#3188)
Browse files Browse the repository at this point in the history
# Description
<!--- Describe your changes to provide context for reviewers, including
why it is needed -->

# Changes
<!-- List of detailed changes (how the change is accomplished) -->

- [ ] ...
- [ ] ...

## How to test
<!--- Include details of how to test your changes, including any
pre-requisites. If no unit tests are included, please explain why and
how to test manually
1.
2.
3.
-->

<!--
## Related Issues

Fixes #
-->
  • Loading branch information
squadgazzz authored Dec 27, 2024
1 parent 32b8619 commit 89cc38a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/shared/src/bad_token/trace_call.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub struct TraceCallDetector {
impl BadTokenDetecting for TraceCallDetector {
async fn detect(&self, token: H160) -> Result<TokenQuality> {
let quality = self.detect_impl(token).await?;
tracing::debug!(?token, ?quality, "determined token quality");
tracing::info!(?token, ?quality, "determined token quality");
Ok(quality)
}
}
Expand Down

0 comments on commit 89cc38a

Please sign in to comment.