Revert "accidentally left some logs in"

This reverts commit 55af1648e7.
This commit is contained in:
tildearrow 2024-08-19 02:49:14 -05:00
parent c00947071a
commit 73c61d9ac7

View file

@ -460,7 +460,7 @@ void DivInstrument::recordUndoStepIfChanged(size_t processTime, const DivInstrum
step.clear(); // don't let it delete the data ptr that's been copied! step.clear(); // don't let it delete the data ptr that's been copied!
undoHist.push_back(stepPtr); undoHist.push_back(stepPtr);
// logI("DivInstrument::undoHist push (%u off, %u size)", stepPtr->podPatch.offset, stepPtr->podPatch.size); logI("DivInstrument::undoHist push (%u off, %u size)", stepPtr->podPatch.offset, stepPtr->podPatch.size);
} }
} }
@ -469,7 +469,7 @@ int DivInstrument::undo() {
DivInstrumentUndoStep* step=undoHist.back(); DivInstrumentUndoStep* step=undoHist.back();
undoHist.pop_back(); undoHist.pop_back();
// logI("DivInstrument::undo (%u off, %u size)", step->podPatch.offset, step->podPatch.size); logI("DivInstrument::undo (%u off, %u size)", step->podPatch.offset, step->podPatch.size);
step->applyAndReverse(this); step->applyAndReverse(this);
// make room // make room
@ -488,7 +488,7 @@ int DivInstrument::redo() {
DivInstrumentUndoStep* step = redoHist.back(); DivInstrumentUndoStep* step = redoHist.back();
redoHist.pop_back(); redoHist.pop_back();
// logI("DivInstrument::redo (%u off, %u size)", step->podPatch.offset, step->podPatch.size); logI("DivInstrument::redo (%u off, %u size)", step->podPatch.offset, step->podPatch.size);
step->applyAndReverse(this); step->applyAndReverse(this);
// make room // make room