AnalogTapeModel

Physical modelling signal processing for analog tape recording
Log | Files | Refs | Submodules | README | LICENSE

commit 57cc31c941e0fd776d5dbfd8a71f87837f1d2b7d
parent 04b41080c601250cdfdd63a51d74b2dd7bb7fede
Author: Jatin Chowdhury <jatinchowdhury18@gmail.com>
Date:   Thu, 17 Jun 2021 17:58:11 -0700

Only print STN mode in debug builds

Diffstat:
MPlugin/Source/Processors/Hysteresis/STNModel.h | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Plugin/Source/Processors/Hysteresis/STNModel.h b/Plugin/Source/Processors/Hysteresis/STNModel.h @@ -172,14 +172,15 @@ class STNModel public: STNModel() { + // useful for debugging... if (! printed) { #if USE_RTNEURAL_STATIC - std::cout << "Using RTNeural ModelT STN" << std::endl; + DBG ("Using RTNeural ModelT STN"); #elif USE_RTNEURAL_POLY - std::cout << "Using RTNeural polymorphic STN" << std::endl; + DBG ("Using RTNeural polymorphic STN"); #else - std::cout << "Using hand-coded STN" << std::endl; + DBG ("Using hand-coded STN"); #endif printed = true; }