From 1d412fd3069b2d55d9e547e18ec448960e24841e Mon Sep 17 00:00:00 2001 From: lifegpc Date: Sun, 9 Jun 2024 12:17:23 +0800 Subject: [PATCH] Remove unneeded console.log --- tasks/import.ts | 1 - thumbnail/ffmpeg_binary.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/tasks/import.ts b/tasks/import.ts index 1b4d8ba..2c23c4f 100644 --- a/tasks/import.ts +++ b/tasks/import.ts @@ -164,7 +164,6 @@ class FileLoader { if (this.#has_prefix) { name = `${index.toString().padStart(3, "0")}_${name}`; } - console.log(name); let t = this.#get_file(name); if (t) return t; const ext = extname(name).toLowerCase(); diff --git a/thumbnail/ffmpeg_binary.ts b/thumbnail/ffmpeg_binary.ts index abe9f2b..af16a67 100644 --- a/thumbnail/ffmpeg_binary.ts +++ b/thumbnail/ffmpeg_binary.ts @@ -98,7 +98,6 @@ export async function fb_generate_thumbnail( `${cfg.quality}`, o, ]; - console.log(args); const cmd = new Deno.Command(p, { args, stdout: "null", stderr: "piped" }); const c = cmd.spawn(); const s = await c.output();