From 711af2a979af8f76ce9c4f4c7c23701eaf2cb613 Mon Sep 17 00:00:00 2001 From: extremeheat Date: Mon, 14 Oct 2024 17:56:21 -0400 Subject: [PATCH] Remove debug logging (#40) * Remove debug logging * Update index.js --- lib/pc/index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/pc/index.js b/lib/pc/index.js index 6b09584..1e8039a 100644 --- a/lib/pc/index.js +++ b/lib/pc/index.js @@ -9,8 +9,6 @@ module.exports = (data, staticData) => { loadDimensionCodec (codec) { const handlers = { chat_type (chat) { - console.log('Registry Chat') - console.dir(chat, { depth: null }) data.chatFormattingById = {} data.chatFormattingByName = {} for (const chatType of chat) { @@ -25,7 +23,6 @@ module.exports = (data, staticData) => { data.chatFormattingById[chatType.id] = n data.chatFormattingByName[chatType.name] = n } - console.log('Updated chat', data.chatFormattingById) }, dimension_type (dimensions) { data.dimensionsById = {}