From 3f5e6e9c3ebb396949b091ee43b76d3303401fd3 Mon Sep 17 00:00:00 2001 From: JP Appel Date: Tue, 8 Oct 2024 15:18:58 -0400 Subject: Fix filtering of escape sequences in vtt logs --- api/docker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'api/docker.go') diff --git a/api/docker.go b/api/docker.go index 551c818..b82b731 100644 --- a/api/docker.go +++ b/api/docker.go @@ -43,7 +43,7 @@ func vttLogs(ctx context.Context, lines uint) (io.ReadCloser, error) { opts := container.LogsOptions{ ShowStdout: true, - // ShowStderr: true, + ShowStderr: true, } if lines != 0 { opts.Tail = fmt.Sprint(lines) -- cgit v1.2.3