Skip to content

Commit

Permalink
Remove debug logging (#40)
Browse files Browse the repository at this point in the history
* Remove debug logging

* Update index.js
  • Loading branch information
extremeheat authored Oct 14, 2024
1 parent ae86b03 commit 711af2a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/pc/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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 = {}
Expand Down

0 comments on commit 711af2a

Please sign in to comment.