Skip to content

Commit a777725

Browse files
committed
chore: change some log's level to Info
1 parent 74963fe commit a777725

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proxy/proxy.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ func (pxy *Proxy) Start(ctx context.Context) {
4848
}
4949

5050
if pxy.timeout > 0 {
51-
logger.Debug().Msgf("connection timeout is set to %d ms", pxy.timeout)
51+
logger.Info().Msgf("connection timeout is set to %d ms", pxy.timeout)
5252
}
5353

5454
logger.Info().Msgf("created a listener on port %d", pxy.port)
5555
if len(pxy.allowedPattern) > 0 {
56-
logger.Debug().Msgf("number of white-listed pattern: %d", len(pxy.allowedPattern))
56+
logger.Info().Msgf("number of white-listed pattern: %d", len(pxy.allowedPattern))
5757
}
5858

5959
for {

0 commit comments

Comments
 (0)