From 8e807d818746133c75d94e4a18c46218dc0369f6 Mon Sep 17 00:00:00 2001 From: talksik Date: Wed, 29 Apr 2026 15:52:31 -0700 Subject: [PATCH] log transcode work --- go/cmd/particleprocessorworker/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go/cmd/particleprocessorworker/main.go b/go/cmd/particleprocessorworker/main.go index 35e482d..3747022 100644 --- a/go/cmd/particleprocessorworker/main.go +++ b/go/cmd/particleprocessorworker/main.go @@ -187,6 +187,7 @@ func transcodeMediaParticle(ctx context.Context, depotSvc depot.Service, doc *fi return } if particleType != particle.TypeMedia { + slog.Info("transcode: particle is not of type media") return } @@ -197,6 +198,7 @@ func transcodeMediaParticle(ctx context.Context, depotSvc depot.Service, doc *fi // Source is already iOS-playable; nothing to do. if isIOSPlayableMime(mediaParticle.Properties.MimeType) { + slog.Info("transcode: skipping because already playable on ios") return }