From a37ecbbb34ef83ef6f38bae2895a95c325401cfe Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 15 Apr 2020 19:24:33 +0100 Subject: [PATCH] update console.error --- src/utils/strings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/strings.ts b/src/utils/strings.ts index 7d1fa0049d..5856682445 100644 --- a/src/utils/strings.ts +++ b/src/utils/strings.ts @@ -49,7 +49,7 @@ export async function copyPlaintext(text: string): Promise { return successful; } } catch (e) { - console.error(e); + console.error("copyPlaintext failed", e); } return false; }