From 1b026b9dbdef5261a84bd42c10b981ad0111a8da Mon Sep 17 00:00:00 2001 From: Antoine Aflalo <197810+Belphemur@users.noreply.github.com> Date: Fri, 30 Aug 2024 15:05:40 -0400 Subject: [PATCH] fix(watch): add missing split option in log --- cmd/watch_command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/watch_command.go b/cmd/watch_command.go index 366c152..fd4c893 100644 --- a/cmd/watch_command.go +++ b/cmd/watch_command.go @@ -76,7 +76,7 @@ func WatchCommand(_ *cobra.Command, args []string) error { if err != nil { return fmt.Errorf("failed to prepare converter: %v", err) } - log.Printf("Watching [%s] with [override: %t, quality: %d, format: %s]", path, override, quality, converterType.String()) + log.Printf("Watching [%s] with [override: %t, quality: %d, format: %s, split: %t]", path, override, quality, converterType.String(), split) events := make(chan inotifywaitgo.FileEvent) errors := make(chan error)