Skip to content

Commit

Permalink
add LiveCaptionsLanguage debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
cpoile committed Mar 25, 2024
1 parent e206786 commit 04ad5b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/transcriber/call/transcriber.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ func (t *Transcriber) Start(ctx context.Context) error {
slog.Debug("LiveCaptionsOn is true; startingTranscriberPool starting transcriber pool.",
slog.String("LiveCaptionsModelSize", string(t.cfg.LiveCaptionsModelSize)),
slog.Int("LiveCaptionsNumTranscribers", t.cfg.LiveCaptionsNumTranscribers),
slog.Int("LiveCaptionsNumThreadsPerTranscriber", t.cfg.LiveCaptionsNumThreadsPerTranscriber))
slog.Int("LiveCaptionsNumThreadsPerTranscriber", t.cfg.LiveCaptionsNumThreadsPerTranscriber),
slog.String("LiveCaptionsLanguage", t.cfg.LiveCaptionsLanguage))
go t.startTranscriberPool()
} else {
slog.Info("LiveCaptionsOn is false; not starting the transcriber pool")
Expand Down

0 comments on commit 04ad5b5

Please sign in to comment.