From 359e46e3bf39eb3a77b9e83bcba1878d970700d9 Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Wed, 6 Jul 2016 14:58:37 -0300 Subject: [PATCH] Disable debugging mode of Universal Analytics --- src/beautifiers/index.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beautifiers/index.coffee b/src/beautifiers/index.coffee index 36ff4f7..784ffec 100644 --- a/src/beautifiers/index.coffee +++ b/src/beautifiers/index.coffee @@ -218,7 +218,7 @@ module.exports = class Beautifiers extends EventEmitter atom.config.set "atom-beautify.general._analyticsUserId", uuid.v4() # Setup Analytics User Id userId = atom.config.get("atom-beautify.general._analyticsUserId") - @analytics ?= new ua(trackingId, userId).debug() + @analytics ?= new ua(trackingId, userId) @analytics[type](payload).send() catch error logger.error(error)