From 8e306af9fc552be3507e750a4c671ca6503a7c64 Mon Sep 17 00:00:00 2001 From: lnedry Date: Mon, 3 Jul 2023 23:04:11 -0400 Subject: [PATCH] Fix: minor debug logging issue (#32) --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 24e36be..2e3c64a 100644 --- a/index.js +++ b/index.js @@ -412,7 +412,7 @@ exports.content_type = function (connection, ctype) { const ct_match = ctype.match(plugin.re.ct); if (!ct_match || !ct_match[1]) return 'unknown/unknown'; - connection.logdebug(plugin, `found content type: ct_match[1]`); + connection.logdebug(plugin, `found content type: ${ct_match[1]}`); connection.transaction.notes.attachment_ctypes.push(ct_match[1]); return ct_match[1].toLowerCase(); }