Skip to content

Commit a4b035e

Browse files
committed
udp association release log set to debug, matching the creation log
1 parent 269c61b commit a4b035e

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
@@ -290,7 +290,7 @@ where
290290
W: UdpInboundWrite + Send + Sync + Unpin + 'static,
291291
{
292292
fn drop(&mut self) {
293-
trace!("udp association for {} is closed", self.peer_addr);
293+
debug!("udp association for {} is closed", self.peer_addr);
294294
}
295295
}
296296

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ struct UdpAssociationContext {
256256

257257
impl Drop for UdpAssociationContext {
258258
fn drop(&mut self) {
259-
trace!("udp tunnel for {} is closed", self.peer_addr);
259+
debug!("udp tunnel for {} is closed", self.peer_addr);
260260
}
261261
}
262262

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ struct UdpAssociationContext {
238238

239239
impl Drop for UdpAssociationContext {
240240
fn drop(&mut self) {
241-
trace!("udp association for {} is closed", self.peer_addr);
241+
debug!("udp association for {} is closed", self.peer_addr);
242242
}
243243
}
244244

0 commit comments

Comments
 (0)