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
140
140
self . respond_writer . clone ( ) ,
141
141
) ;
142
142
143
- trace ! ( "created udp association for {}" , peer_addr) ;
143
+ debug ! ( "created udp association for {}" , peer_addr) ;
144
144
145
145
assoc. try_send ( ( target_addr, Bytes :: copy_from_slice ( data) ) ) ?;
146
146
assoc_map. insert ( peer_addr, assoc) ;
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ impl UdpTunnel {
159
159
balancer. clone ( ) ,
160
160
) ;
161
161
162
- trace ! ( "created udp association for {}" , peer_addr) ;
162
+ debug ! ( "created udp association for {}" , peer_addr) ;
163
163
164
164
assoc. try_send ( Bytes :: copy_from_slice ( data) ) ?;
165
165
assoc_map. insert ( peer_addr, assoc) ;
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ impl UdpServer {
149
149
self . keepalive_tx . clone ( ) ,
150
150
) ;
151
151
152
- trace ! ( "created udp association for {}" , peer_addr) ;
152
+ debug ! ( "created udp association for {}" , peer_addr) ;
153
153
154
154
assoc. try_send ( ( target_addr, Bytes :: copy_from_slice ( data) ) ) ?;
155
155
assoc_map. insert ( peer_addr, assoc) ;
You can’t perform that action at this time.
0 commit comments