remove console logs

This commit is contained in:
dank074 2021-10-19 16:35:46 -05:00
parent dca22b58c3
commit 8b4a09bdf6

View File

@ -52,13 +52,11 @@ export const ChatlogView: FC<ChatlogViewProps> = 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;
}