summaryrefslogtreecommitdiffstats
path: root/src/effects
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2022-10-28 09:35:47 +0200
committerDaniel Schürmann <daschuer@mixxx.org>2022-10-28 09:35:47 +0200
commit5d63ac33a5bd4cb74fce61126ac32ac7bd52792a (patch)
treeca764c2cf9b7e2a005b3870c3eeb2168082d6274 /src/effects
parentcba84c1cd0e3bf7c1efce035b0caa24ff06f81c3 (diff)
re-enabble debug guard
Diffstat (limited to 'src/effects')
-rw-r--r--src/effects/backends/effectprocessor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/effects/backends/effectprocessor.h b/src/effects/backends/effectprocessor.h
index d95f8993eb..a7e2b21c00 100644
--- a/src/effects/backends/effectprocessor.h
+++ b/src/effects/backends/effectprocessor.h
@@ -111,9 +111,9 @@ class EffectProcessorImpl : public EffectProcessor {
/// Subclasses should not implement their own destructor. All state should
/// be stored in the EffectState subclass, not the EffectProcessorImpl subclass.
~EffectProcessorImpl() {
- //if (kEffectDebugOutput) {
- qDebug() << "~EffectProcessorImpl" << this;
- //}
+ if (kEffectDebugOutput) {
+ qDebug() << "~EffectProcessorImpl" << this;
+ }
};
/// NOTE: Subclasses for Built-In effects must implement the following static methods for