Increase verbosity of transcode logging

This commit is contained in:
Nexus 2024-04-14 23:21:29 +01:00
parent 60e4ed5570
commit 72a677df38
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -68,7 +68,7 @@ class AutoResponder(commands.Cog):
return
with tempfile.NamedTemporaryFile(suffix=".mp4") as tmp:
tmp_path = pathlib.Path(tmp.name)
self.log.debug("Transcoding %r to %r", uri, tmp_path)
self.log.info("Transcoding %r to %r", uri, tmp_path)
args = [
"-i", str(uri),
"-c:v", "libx264",