From 73c61d9ac7ebe87e1d11150d3c223a2bc0463849 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 19 Aug 2024 02:49:14 -0500 Subject: [PATCH] Revert "accidentally left some logs in" This reverts commit 55af1648e7b2772995e97ccd64695d907cec88ca. --- src/engine/instrument.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/engine/instrument.cpp b/src/engine/instrument.cpp index d6351d8a3..bccd14acb 100644 --- a/src/engine/instrument.cpp +++ b/src/engine/instrument.cpp @@ -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! 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(); 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); // make room @@ -488,7 +488,7 @@ int DivInstrument::redo() { DivInstrumentUndoStep* step = redoHist.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); // make room