Forráskód Böngészése

remove console.logs

sschmidTU 3 éve
szülő
commit
cf511aec8d
1 módosított fájl, 0 hozzáadás és 3 törlés
  1. 0 3
      src/MusicalScore/Playback/VoicePlaybackData.ts

+ 0 - 3
src/MusicalScore/Playback/VoicePlaybackData.ts

@@ -95,10 +95,7 @@ export class VoicePlaybackData {
             const maxEntryTimestamp: Fraction = entry.enrolledTimestamp.clone();
             maxEntryTimestamp.Add(entry.playbackEntry.Notes[0].Length);
             if (entry.enrolledTimestamp.RealValue < enrolledTimestamp.RealValue) {
-                console.log("entry: " + entry.enrolledTimestamp.RealValue);
-                console.log("enrolled: " + enrolledTimestamp.RealValue);
                 if (!this.rules.PlayAlreadyStartedNotesFromCursorPosition) {
-                    console.log("ratio: " + entry.enrolledTimestamp.RealValue / enrolledTimestamp.RealValue);
                     if (entry.enrolledTimestamp.RealValue / enrolledTimestamp.RealValue < 0.99) {
                         continue; // don't play notes that started before current cursor position
                         // note that we'd ideally check entry < enrolled, but enrolled is imprecise,