From 955ebdd747de3cd41f58612d82fb15eee8424a37 Mon Sep 17 00:00:00 2001 From: Devin Howard Date: Mon, 5 Feb 2018 21:35:53 -0800 Subject: [PATCH] Change log level of Metamaps.Debug (#1170) debug log level is invisible in Chrome by default, which is confusing --- frontend/src/Metamaps/Debug.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/Metamaps/Debug.js b/frontend/src/Metamaps/Debug.js index 2871ea4c..67c7a153 100644 --- a/frontend/src/Metamaps/Debug.js +++ b/frontend/src/Metamaps/Debug.js @@ -1,9 +1,9 @@ const Debug = function(arg = window.Metamaps) { if (arg === undefined && typeof window !== 'undefined') arg = window.Metamaps - console.debug(arg) - console.debug(`Metamaps Version: ${arg.ServerData.VERSION}`) - console.debug(`Build: ${arg.ServerData.BUILD}`) - console.debug(`Last Updated: ${arg.ServerData.LAST_UPDATED}`) + console.log(arg) + console.log(`Metamaps Version: ${arg.ServerData.VERSION}`) + console.log(`Build: ${arg.ServerData.BUILD}`) + console.log(`Last Updated: ${arg.ServerData.LAST_UPDATED}`) } export default Debug