diff --git a/handler.go b/handler.go index e2bd6d0..e7fe51e 100644 --- a/handler.go +++ b/handler.go @@ -133,6 +133,7 @@ func (s *Server) createSpeechHandler(serviceType string, onResultFunc func(conte zlog.Info(). Str("channel_id", h.SoraChannelID). Str("connection_id", h.SoraConnectionID). + Int("retry_count", retryCount). Msg("NEW-REQUEST") reader, err := serviceHandler.Handle(ctx, r) @@ -147,13 +148,6 @@ func (s *Server) createSpeechHandler(serviceType string, onResultFunc func(conte if s.config.MaxRetry > retryCount { retryCount += 1 - zlog.Debug(). - Err(err). - Str("channel_id", h.SoraChannelID). - Str("connection_id", h.SoraConnectionID). - Int("retry_count", retryCount). - Send() - // 連続のリトライを避けるために少し待つ time.Sleep(time.Duration(s.config.RetryIntervalMs) * time.Millisecond) @@ -191,13 +185,6 @@ func (s *Server) createSpeechHandler(serviceType string, onResultFunc func(conte // サーバから切断されたが再度接続できる可能性があるため、接続を試みる retryCount += 1 - zlog.Debug(). - Err(err). - Str("channel_id", h.SoraChannelID). - Str("connection_id", h.SoraConnectionID). - Int("retry_count", retryCount). - Send() - // TODO: 必要な場合は連続のリトライを避けるために少し待つ処理を追加する break