From 969f88d4bb1fc79159114790d3f47e27d3377924 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Sat, 7 May 2022 06:18:01 +0000 Subject: [PATCH] add missing import --- web3-proxy/src/connection.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3-proxy/src/connection.rs b/web3-proxy/src/connection.rs index 260d59e9..2ccb39dc 100644 --- a/web3-proxy/src/connection.rs +++ b/web3-proxy/src/connection.rs @@ -15,7 +15,7 @@ use std::sync::atomic::{self, AtomicU32, AtomicU64}; use std::time::Duration; use std::{cmp::Ordering, sync::Arc}; use tokio::time::{interval, sleep, MissedTickBehavior}; -use tracing::{info, warn}; +use tracing::{info, trace, warn}; use crate::connections::Web3Connections;