diff --git a/core/js/dist/install.js b/core/js/dist/install.js index 6fab7114db9c7a52a44b0ee6a87a10ea92112352..13c8a52266137df5e4687f76b619cea865850be2 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 4bc740ef31f76e89af7e8efc669993d0da2586f0..69aeed6218110331defa3534919e05d4ce434fab 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 217b92ebd34113a85957a635bdc2f45a0b015ee5..096b0d938e904fa3a9b01a68192ec3fdde6b73d9 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 9399ac69fcd6272305d8558cef245d7f51d471b0..309d66a25763a51326bdbf27167bc611cb2c0744 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 4ccbaeef4e941fdc5d496e85ef70aaee5b3cd8ff..7c7ce7fbec19ab01c167ff7a485a93a8bc7a2a2e 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 988e3dd3ade26a006d35d5009cf4092c7567b921..918ca7f9a765293ed176acade0f7207b07bcf1ac 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 dc7404b825c26a11bfb309c5de3d7acaf4903dff..d6cefa28de9d499453be752808d053ae109fba4c 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 b556cee3d24c969ed945daa1d22b323616b88276..7ee9a2fee41ed38a2f71c1bd22b6980633dfee93 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 30875906e30aca47e0cdfa29b262dfd66651ab86..b018bd679ca35aafcd4d1384ebe02f86da691181 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 2e17512dd29945ce80f23a521cd878a27a0978e1..bc6e791a9f5271b50211aedafe516c91795fccd3 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 a55392f3a749c231046f16eb98a7ad98f6f728de..e7f2b075374d5665e21d73744a64265a0bd1a7da 100644 --- a/core/src/globals.js +++ b/core/src/globals.js @@ -53,16 +53,11 @@ 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() { - const notTesting = window.TESTING === undefined - if (notTesting && debug) { - /* eslint-disable no-console */ - console.trace.apply(console, arguments) - } else if (notTesting) { + if (window.TESTING === undefined) { console.warn.apply(console, arguments) } }