From fe9d8da299b7c71ea63a0e56eec726d81f5d3112 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Tue, 14 Jan 2020 14:44:13 +0100 Subject: [PATCH] Issue #1319 - Enable promise debugging only in DEBUG builds. --- xpcom/threads/MozPromise.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcom/threads/MozPromise.h b/xpcom/threads/MozPromise.h index 7a2921d2ac..97bfc904b5 100644 --- a/xpcom/threads/MozPromise.h +++ b/xpcom/threads/MozPromise.h @@ -19,7 +19,7 @@ #include "nsTArray.h" #include "nsThreadUtils.h" -#if defined(DEBUG) || !defined(RELEASE_OR_BETA) +#if defined(DEBUG) #define PROMISE_DEBUG #endif