From 8b4a09bdf68c7b1d960b5467be9146740f600f17 Mon Sep 17 00:00:00 2001 From: dank074 Date: Tue, 19 Oct 2021 16:35:46 -0500 Subject: [PATCH] remove console logs --- src/views/mod-tools/views/chatlog/ChatlogView.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/views/mod-tools/views/chatlog/ChatlogView.tsx b/src/views/mod-tools/views/chatlog/ChatlogView.tsx index 563bf700..426fd5a6 100644 --- a/src/views/mod-tools/views/chatlog/ChatlogView.tsx +++ b/src/views/mod-tools/views/chatlog/ChatlogView.tsx @@ -52,13 +52,11 @@ export const ChatlogView: FC = props => if( (props.index + 1) === (totalIndex - currentRecord.chatlog.length)) { - console.log(`global: ${props.index} roomInfo ${currentRecord.roomName}`); isRoomInfo = true; break; } const index = props.index - (totalIndex - currentRecord.chatlog.length); chatlogEntry = currentRecord.chatlog[index]; - console.log(`global: ${props.index} local: ${index} value: ${chatlogEntry}`); break; }