Skip to content

Commit

Permalink
Fix: minor debug logging issue (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
lnedry authored Jul 4, 2023
1 parent 00b6630 commit 8e306af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 8e306af

Please sign in to comment.