Skip to content

Commit af56bd5

Browse files
committed
fix: remove socket debug
1 parent 53eee76 commit af56bd5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/stack-service-base/socket_trace.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ module StackServiceBase
22
module SocketTrace
33
def bind(local_sockaddr)
44
addr = Addrinfo.new(local_sockaddr)
5-
LOGGER.info "Socket Bind: http://#{addr.ip_address}:#{addr.ip_port}"
5+
# LOGGER.debug "Socket Bind: http://#{addr.ip_address}:#{addr.ip_port}"
66
super
77
end
88
def setsockopt(level, optname, optval)
9-
LOGGER.info "Socket setsockopt: #{level}, #{optname}, #{optval}"
9+
# LOGGER.debug "Socket setsockopt: #{level}, #{optname}, #{optval}"
1010
super
1111
end
1212
end
1313

1414
Socket.prepend SocketTrace
15-
end
15+
end

0 commit comments

Comments
 (0)