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; }