Drop debug statements

This commit is contained in:
decentral1se 2021-06-01 17:23:26 +02:00
parent 8a172afb71
commit 3b5a8924c2
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A

View File

@ -586,10 +586,7 @@ function draw() {
// generate a new shape after a sound recording // generate a new shape after a sound recording
if (newSoundJustRecorded === true) { if (newSoundJustRecorded === true) {
let limits = gardenOfflineLimits(); let limits = gardenOfflineLimits();
console.log("limits are:");
console.log(limits);
if (limits === false) { if (limits === false) {
console.log("making another one!");
// build a new copy of the recording to store on the shape object // build a new copy of the recording to store on the shape object
let soundBlob = recording.getBlob(); let soundBlob = recording.getBlob();
let data = new p5.File(soundBlob); let data = new p5.File(soundBlob);