From c6a29f6cb7fa03afd6c6fbed8ce4f9d6d488fabe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Iv=C3=A1n=20Vieitez=20Parra?= <3857362+corrideat@users.noreply.github.com> Date: Tue, 25 Jun 2024 22:14:40 +0000 Subject: [PATCH] Remove spurious console.log --- src/lib/Cache.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/Cache.ts b/src/lib/Cache.ts index 2000405..5ad9a7a 100644 --- a/src/lib/Cache.ts +++ b/src/lib/Cache.ts @@ -32,7 +32,6 @@ class Cache { if (Object.prototype.hasOwnProperty.call(this.keyCache_, key)) { return this.keyCache_[key]; } - console.error('XXX', key); throw new RangeError('Non-existent key'); }