printDebug: add label to identify source of the log (#1555)

This commit is contained in:
larabr 2022-08-17 18:54:53 +02:00 committed by GitHub
parent ca60884c05
commit 93644b7c58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}
},