diff options
author | metamuffin <metamuffin@disroot.org> | 2025-05-19 22:16:46 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-05-19 22:16:46 +0200 |
commit | 8cc5e84845e7313becd903e455c0b6e98f5a08d6 (patch) | |
tree | f68762ec94d3deb54ac63278073fd6b895c498aa /scripts/ytdlp_download.ts | |
parent | 20d005f5c19ee09fbee1f664bc50028f635db9f3 (diff) | |
download | isda-8cc5e84845e7313becd903e455c0b6e98f5a08d6.tar isda-8cc5e84845e7313becd903e455c0b6e98f5a08d6.tar.bz2 isda-8cc5e84845e7313becd903e455c0b6e98f5a08d6.tar.zst |
remove status debug print
Diffstat (limited to 'scripts/ytdlp_download.ts')
-rw-r--r-- | scripts/ytdlp_download.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/ytdlp_download.ts b/scripts/ytdlp_download.ts index d31280f..9489e49 100644 --- a/scripts/ytdlp_download.ts +++ b/scripts/ytdlp_download.ts @@ -57,7 +57,6 @@ async function do_download(key: string, data: { [key: string]: string }) { const lines = child.stdout.pipeThrough(new TextDecoderStream()).pipeThrough(new TextLineStream()) for await (const line of lines) { if (!line.length) continue - console.log(JSON.stringify(line)); const k = JSON.parse(line) ws.send(JSON.stringify({ t: "metadata", key, data: { |