Remove unneeded console.log

This commit is contained in:
2024-06-09 12:17:23 +08:00
parent 11cb15aa0e
commit 1d412fd306
2 changed files with 0 additions and 2 deletions

View File

@@ -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();

View File

@@ -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();