Skip to content

Commit f7316c0

Browse files
committed
change logging level for UDP warning
1 parent cc36de5 commit f7316c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shadowsocks/udprelay.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ def _handle_server(self):
185185
af, socktype, proto, canonname, sa = addrs[0]
186186
if self._forbidden_iplist:
187187
if common.to_str(sa[0]) in self._forbidden_iplist:
188-
logging.warn('IP %s is in forbidden list, drop' %
189-
common.to_str(sa[0]))
188+
logging.debug('IP %s is in forbidden list, drop' %
189+
common.to_str(sa[0]))
190190
# drop
191191
return
192192
client = socket.socket(af, socktype, proto)

0 commit comments

Comments
 (0)