From ee7252328da8ba3c864dda9f4bb88c8d08ee7ae7 Mon Sep 17 00:00:00 2001 From: Benjamin Wegener Date: Thu, 11 Jan 2024 23:30:19 +0000 Subject: [PATCH] chore(cleanup) remove debug message --- lib/core/Cetra.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/core/Cetra.js b/lib/core/Cetra.js index 81c06c2..5d220b3 100644 --- a/lib/core/Cetra.js +++ b/lib/core/Cetra.js @@ -753,7 +753,6 @@ class Cetra extends Emitter { * @returns {mixed} the converted (otherwise the same) value */ convertValue(type, value) { - console.log('bane', this.#internals.get('types'), type, value); const convertFn = this.#internals.get('types').get(type ?? 'string'); if (!convertFn) { Logger.warn(`No conversion function found for type "${type}".`);