File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
crates/shadowsocks-service/src Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ where
140140 self . respond_writer . clone ( ) ,
141141 ) ;
142142
143- trace ! ( "created udp association for {}" , peer_addr) ;
143+ debug ! ( "created udp association for {}" , peer_addr) ;
144144
145145 assoc. try_send ( ( target_addr, Bytes :: copy_from_slice ( data) ) ) ?;
146146 assoc_map. insert ( peer_addr, assoc) ;
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ impl UdpTunnel {
159159 balancer. clone ( ) ,
160160 ) ;
161161
162- trace ! ( "created udp association for {}" , peer_addr) ;
162+ debug ! ( "created udp association for {}" , peer_addr) ;
163163
164164 assoc. try_send ( Bytes :: copy_from_slice ( data) ) ?;
165165 assoc_map. insert ( peer_addr, assoc) ;
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ impl UdpServer {
149149 self . keepalive_tx . clone ( ) ,
150150 ) ;
151151
152- trace ! ( "created udp association for {}" , peer_addr) ;
152+ debug ! ( "created udp association for {}" , peer_addr) ;
153153
154154 assoc. try_send ( ( target_addr, Bytes :: copy_from_slice ( data) ) ) ?;
155155 assoc_map. insert ( peer_addr, assoc) ;
You can’t perform that action at this time.
0 commit comments