From 392c95d3e1bcfb3e4e68466746ff0c5a0eeb8c28 Mon Sep 17 00:00:00 2001 From: izzy lyseggen Date: Wed, 12 Aug 2020 16:02:31 +0100 Subject: [PATCH] fix: remove `debug: true` left this in accidentally as subscriptions are not running as debug for some reason --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 57c62f45b..105f1f8b4 100644 --- a/app.js +++ b/app.js @@ -64,7 +64,7 @@ exports.init = async ( ) => { }, }, tracing: process.env.NODE_ENV === 'test' || process.env.NODE_ENV === 'development', - debug: true + // debug: true } ) graphqlServer.applyMiddleware( { app: app } )