File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ impl Actor {
173
173
}
174
174
175
175
async fn handle_potential_change ( & mut self , time_jumped : bool ) -> Result < ( ) > {
176
- info ! ( "potential change" ) ;
176
+ debug ! ( "potential change" ) ;
177
177
178
178
let new_state = State :: new ( ) . await ;
179
179
let old_state = & self . interface_state ;
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ impl RouteMonitor {
78
78
warn ! ( "error reading netlink payload: {:?}" , err) ;
79
79
}
80
80
NetlinkPayload :: Done ( _) => {
81
- info ! ( "done received, exiting" ) ;
81
+ debug ! ( "done received, exiting" ) ;
82
82
break ;
83
83
}
84
84
NetlinkPayload :: InnerMessage ( msg) => match msg {
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ impl UdpSocket {
170
170
/// limiting packets that are read via `recv` from the address specified in
171
171
/// `addr`.
172
172
pub fn connect ( & self , addr : SocketAddr ) -> io:: Result < ( ) > {
173
- tracing :: info! ( "connecting to {}" , addr ) ;
173
+ debug ! ( %addr , "connecting" ) ;
174
174
let guard = self . socket . read ( ) . unwrap ( ) ;
175
175
let ( socket_tokio, _state) = guard. try_get_connected ( ) ?;
176
176
You can’t perform that action at this time.
0 commit comments