Skip to content

Commit c7b4ae4

Browse files
committed
udp association creation log should be DEBUG
1 parent cc0cc7c commit c7b4ae4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/shadowsocks-service/src/local/net/udp/association.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

crates/shadowsocks-service/src/local/tunnel/udprelay.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

crates/shadowsocks-service/src/server/udprelay.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)