Remove debug log.

Don't think it makes much sense
This commit is contained in:
Cohee 2024-05-23 02:10:39 +03:00
parent a11231dd2e
commit 8a8e8a89dc
1 changed files with 0 additions and 1 deletions

View File

@ -16,7 +16,6 @@ router.post('/sanitize-filename', jsonParser, async (request, response) => {
}
const sanitizedFilename = sanitize(fileName);
console.debug(`Sanitized fileName: ${fileName} -> ${sanitizedFilename}`);
return response.send({ fileName: sanitizedFilename });
} catch (error) {
console.log(error);