File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use alloy_primitives::Address;
7
7
use anyhow:: Result ;
8
8
use ethers_core:: types:: U256 ;
9
9
use eventuals:: { timer, Eventual , EventualExt } ;
10
- use log:: warn;
10
+ use log:: { error , warn} ;
11
11
use serde:: Deserialize ;
12
12
use serde_json:: json;
13
13
use tokio:: time:: sleep;
@@ -66,7 +66,7 @@ pub fn escrow_accounts(
66
66
67
67
// If there are any GraphQL errors returned, we'll log them for debugging
68
68
if let Some ( errors) = response. errors {
69
- warn ! (
69
+ error ! (
70
70
"Errors encountered fetching escrow accounts for indexer {:?}: {}" ,
71
71
indexer_address,
72
72
errors
@@ -103,7 +103,7 @@ pub fn escrow_accounts(
103
103
Ok ( sender_accounts)
104
104
} ,
105
105
move |err : String | {
106
- warn ! (
106
+ error ! (
107
107
"Failed to fetch escrow accounts for indexer {:?}: {}" ,
108
108
indexer_address, err
109
109
) ;
You can’t perform that action at this time.
0 commit comments