We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53eee76 commit af56bd5Copy full SHA for af56bd5
1 file changed
lib/stack-service-base/socket_trace.rb
@@ -2,14 +2,14 @@ module StackServiceBase
2
module SocketTrace
3
def bind(local_sockaddr)
4
addr = Addrinfo.new(local_sockaddr)
5
- LOGGER.info "Socket Bind: http://#{addr.ip_address}:#{addr.ip_port}"
+ # LOGGER.debug "Socket Bind: http://#{addr.ip_address}:#{addr.ip_port}"
6
super
7
end
8
def setsockopt(level, optname, optval)
9
- LOGGER.info "Socket setsockopt: #{level}, #{optname}, #{optval}"
+ # LOGGER.debug "Socket setsockopt: #{level}, #{optname}, #{optval}"
10
11
12
13
14
Socket.prepend SocketTrace
15
-end
+end
0 commit comments