Removed console.log

This commit is contained in:
Frutescens 2024-08-02 11:17:22 -07:00
parent 08efc32fa7
commit 7e35fca0f9

View File

@ -137,7 +137,6 @@ export default class RunHistoryUiHandler extends MessageUiHandler {
if (timestamps.length > 1) { if (timestamps.length > 1) {
timestampsNo.sort((a, b) => a - b); timestampsNo.sort((a, b) => a - b);
} }
console.log(timestamps);
const entryCount = timestamps.length; const entryCount = timestamps.length;
for (let s = 0; s < entryCount; s++) { for (let s = 0; s < entryCount; s++) {
const entry = new RunEntry(this.scene, response, timestampsNo[s].toString(), s); const entry = new RunEntry(this.scene, response, timestampsNo[s].toString(), s);