diff --git a/core/js/dist/install.js b/core/js/dist/install.js
index 13c8a52266137df5e4687f76b619cea865850be2..6fab7114db9c7a52a44b0ee6a87a10ea92112352 100644
Binary files a/core/js/dist/install.js and b/core/js/dist/install.js differ
diff --git a/core/js/dist/install.js.map b/core/js/dist/install.js.map
index 69aeed6218110331defa3534919e05d4ce434fab..4bc740ef31f76e89af7e8efc669993d0da2586f0 100644
Binary files a/core/js/dist/install.js.map and b/core/js/dist/install.js.map differ
diff --git a/core/js/dist/login.js b/core/js/dist/login.js
index 096b0d938e904fa3a9b01a68192ec3fdde6b73d9..217b92ebd34113a85957a635bdc2f45a0b015ee5 100644
Binary files a/core/js/dist/login.js and b/core/js/dist/login.js differ
diff --git a/core/js/dist/login.js.map b/core/js/dist/login.js.map
index 309d66a25763a51326bdbf27167bc611cb2c0744..9399ac69fcd6272305d8558cef245d7f51d471b0 100644
Binary files a/core/js/dist/login.js.map and b/core/js/dist/login.js.map differ
diff --git a/core/js/dist/main.js b/core/js/dist/main.js
index 7c7ce7fbec19ab01c167ff7a485a93a8bc7a2a2e..4ccbaeef4e941fdc5d496e85ef70aaee5b3cd8ff 100644
Binary files a/core/js/dist/main.js and b/core/js/dist/main.js differ
diff --git a/core/js/dist/main.js.map b/core/js/dist/main.js.map
index 918ca7f9a765293ed176acade0f7207b07bcf1ac..988e3dd3ade26a006d35d5009cf4092c7567b921 100644
Binary files a/core/js/dist/main.js.map and b/core/js/dist/main.js.map differ
diff --git a/core/js/dist/maintenance.js b/core/js/dist/maintenance.js
index d6cefa28de9d499453be752808d053ae109fba4c..dc7404b825c26a11bfb309c5de3d7acaf4903dff 100644
Binary files a/core/js/dist/maintenance.js and b/core/js/dist/maintenance.js differ
diff --git a/core/js/dist/maintenance.js.map b/core/js/dist/maintenance.js.map
index 7ee9a2fee41ed38a2f71c1bd22b6980633dfee93..b556cee3d24c969ed945daa1d22b323616b88276 100644
Binary files a/core/js/dist/maintenance.js.map and b/core/js/dist/maintenance.js.map differ
diff --git a/core/js/dist/recommendedapps.js b/core/js/dist/recommendedapps.js
index b018bd679ca35aafcd4d1384ebe02f86da691181..30875906e30aca47e0cdfa29b262dfd66651ab86 100644
Binary files a/core/js/dist/recommendedapps.js and b/core/js/dist/recommendedapps.js differ
diff --git a/core/js/dist/recommendedapps.js.map b/core/js/dist/recommendedapps.js.map
index bc6e791a9f5271b50211aedafe516c91795fccd3..2e17512dd29945ce80f23a521cd878a27a0978e1 100644
Binary files a/core/js/dist/recommendedapps.js.map and b/core/js/dist/recommendedapps.js.map differ
diff --git a/core/src/globals.js b/core/src/globals.js
index e7f2b075374d5665e21d73744a64265a0bd1a7da..a55392f3a749c231046f16eb98a7ad98f6f728de 100644
--- a/core/src/globals.js
+++ b/core/src/globals.js
@@ -53,11 +53,16 @@ import 'strengthify/strengthify.css'
 import OC from './OC/index'
 import OCP from './OCP/index'
 import OCA from './OCA/index'
+import { debug } from './OC/debug'
 import escapeHTML from 'escape-html'
 import { getToken as getRequestToken } from './OC/requesttoken'
 
 const warnIfNotTesting = function() {
-	if (window.TESTING === undefined) {
+	const notTesting = window.TESTING === undefined
+	if (notTesting && debug) {
+		/* eslint-disable no-console */
+		console.trace.apply(console, arguments)
+	} else if (notTesting) {
 		console.warn.apply(console, arguments)
 	}
 }