cleanup console logs a little bit
All checks were successful
ci/woodpecker/push/ci Pipeline was successful

This commit is contained in:
Madison Grubb
2025-09-04 22:59:37 -04:00
parent fad007ab1f
commit f0e9ebccb9
2 changed files with 1 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ async function saveImage(buffer, filename) {
const filepath = path.join(__dirname, filename);
await mkdir(__dirname, { recursive: true });
await writeFile(filepath, buffer);
console.log(`Saved image: ${filepath}`);
console.log(`Saved image: ${filepath}`);
return filepath;
}