Skip to content

Commit

Permalink
Remove them logs 😭
Browse files Browse the repository at this point in the history
  • Loading branch information
AshimeeAlt committed Nov 6, 2024
1 parent 17106b7 commit 29f1ff7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/engine/sequencer.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ class Sequencer {
const threads = this.runtime.threads;
for (let i = 0; i < threads.length; i++) {
const activeThread = this.activeThread = threads[i];
console.log('Managing thread with status', activeThread.status);
// Check if the thread is done so it is not executed.
if (activeThread.stack.length === 0 ||
activeThread.status === Thread.STATUS_DONE) {
Expand Down Expand Up @@ -187,7 +186,6 @@ class Sequencer {
}

// Don't step a paused thread
console.log('Stepping thread with status of', thread.status);
if (thread.status === Thread.STATUS_PAUSED) return;

let currentBlockId = thread.peekStack();
Expand Down

0 comments on commit 29f1ff7

Please sign in to comment.