# Functions
DialContextFunc returns a wrapper for dial which logs with the default logger all opening and closing events that occur on the connections returned by the dial function.
DialContextFuncWith returns a wrapper for dial which logs with logger all opening and closing events that occur on the connections returned by the dial function.
DialFunc returns a wrapper for dial which logs with the default logger all opening and closing events that occur on the connections returned by the dial function.
DialFuncWith returns a wrapper for dial which logs with logger all opening and closing events that occur on the connections returned by the dial function.
NewHandler returns a wrapped handler which logs with the default logger all opening and closing events that occur on the connections servied by the handler.
NewHandlerWith returns a wrapped handler which logs with logger all opening and closing events that occur on the connections served by the handler with logger.
NewListener returns a wrapped version of listener which logs with the default logger all accept and close events that occur on the listener.
NewListenerWith returns a wrapped version of listener which logs with logger all accept and close events that occur on the listener.
# Interfaces
Handler is an interface that can be implemented by types that serve network connections.