We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74963fe commit a777725Copy full SHA for a777725
proxy/proxy.go
@@ -48,12 +48,12 @@ func (pxy *Proxy) Start(ctx context.Context) {
48
}
49
50
if pxy.timeout > 0 {
51
- logger.Debug().Msgf("connection timeout is set to %d ms", pxy.timeout)
+ logger.Info().Msgf("connection timeout is set to %d ms", pxy.timeout)
52
53
54
logger.Info().Msgf("created a listener on port %d", pxy.port)
55
if len(pxy.allowedPattern) > 0 {
56
- logger.Debug().Msgf("number of white-listed pattern: %d", len(pxy.allowedPattern))
+ logger.Info().Msgf("number of white-listed pattern: %d", len(pxy.allowedPattern))
57
58
59
for {
0 commit comments