From 93644b7c58bbcd94ed364500d26ad0d694d4f937 Mon Sep 17 00:00:00 2001 From: larabr Date: Wed, 17 Aug 2022 18:54:53 +0200 Subject: [PATCH] `printDebug`: add label to identify source of the log (#1555) --- src/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util.js b/src/util.js index 6c354699..f1af70cf 100644 --- a/src/util.js +++ b/src/util.js @@ -289,7 +289,7 @@ const util = { */ printDebug: function (str) { if (debugMode) { - console.log(str); + console.log('[OpenPGP.js debug]', str); } }, @@ -300,7 +300,7 @@ const util = { */ printDebugError: function (error) { if (debugMode) { - console.error(error); + console.error('[OpenPGP.js debug]', error); } },