From 1f1a1e8af5311c843ee94fdf851eac741d6d6c90 Mon Sep 17 00:00:00 2001 From: PipeItToDevNull Date: Sun, 5 Jan 2025 11:44:03 -0500 Subject: [PATCH] tiny log change --- api/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/api.js b/api/api.js index 00ebff0..0daf158 100755 --- a/api/api.js +++ b/api/api.js @@ -175,7 +175,7 @@ const handleAnalyzeDmp = async (req, res) => { // Then analyze the directory if the checks pass fs.readdir(filePath, { withFileTypes: true }, (err, files) => { if (err) { - logger.error(`Failed to read directory: ${err.message}`); + logger.error(`Failed to read extracted directory: ${err.message}`); res.status(500).send(`An error occurred while reading the extracted directory: ${err.message}`); return; }