]> source.dussan.org Git - nextcloud-server.git/commitdiff
only print deprecation logs if debug mode is enabled
authorSimon L <szaimen@e.mail.de>
Fri, 16 Jun 2023 12:03:23 +0000 (14:03 +0200)
committerJohn Molakvoæ <skjnldsv@users.noreply.github.com>
Sat, 24 Jun 2023 14:54:11 +0000 (16:54 +0200)
Signed-off-by: Simon L <szaimen@e.mail.de>
apps/files/js/filelist.js
apps/files/js/files.js
apps/files_sharing/src/services/ExternalLinkActions.js
core/src/OC/capabilities.js
core/src/OC/util.js
core/src/OCA/search.js
core/src/globals.js
core/src/jquery/placeholder.js

index c1b603da71454adeb5d1756785d3dcbff32d7e95..479956a4ddfe5407b05c8229c8680f86a9901d76 100644 (file)
                 * @param {string} [tabId] optional tab id to select
                 */
                showDetailsView: function(fileName, tabId) {
-                       console.debug('showDetailsView is deprecated! Use OCA.Files.Sidebar.activeTab. It will be removed in nextcloud 20.');
+                       OC.debug && console.debug('showDetailsView is deprecated! Use OCA.Files.Sidebar.activeTab. It will be removed in nextcloud 20.');
                        this._updateDetailsView(fileName);
                        if (tabId) {
                                OCA.Files.Sidebar.setActiveTab(tabId);
                 * Register a tab view to be added to all views
                 */
                registerTabView: function(tabView) {
-                       console.debug('registerTabView is deprecated! It will be removed in nextcloud 20.');
+                       OC.debug && console.debug('registerTabView is deprecated! It will be removed in nextcloud 20.');
                        const enabled = tabView.canDisplay || undefined
                        if (tabView.id) {
                                OCA.Files.Sidebar.registerTab(new OCA.Files.Sidebar.Tab({
                 * Register a detail view to be added to all views
                 */
                registerDetailView: function(detailView) {
-                       console.debug('registerDetailView is deprecated! It will be removed in nextcloud 20.');
+                       OC.debug && console.debug('registerDetailView is deprecated! It will be removed in nextcloud 20.');
                        if (detailView.el) {
                                OCA.Files.Sidebar.registerSecondaryView(detailView)
                        }
index f37ad88c86ad089e7f603114ac897f923b4dc8cb..7ce9079760fedbb3d762660ad1c24e1cb0cc540a 100644 (file)
                 * @deprecated used OCA.Files.FileList.generatePreviewUrl instead
                 */
                generatePreviewUrl: function(urlSpec) {
-                       console.debug('DEPRECATED: please use generatePreviewUrl() from an OCA.Files.FileList instance');
+                       OC.debug && console.debug('DEPRECATED: please use generatePreviewUrl() from an OCA.Files.FileList instance');
                        return OCA.Files.App.fileList.generatePreviewUrl(urlSpec);
                },
 
                 * @deprecated used OCA.Files.FileList.lazyLoadPreview instead
                 */
                lazyLoadPreview : function(path, mime, ready, width, height, etag) {
-                       console.debug('DEPRECATED: please use lazyLoadPreview() from an OCA.Files.FileList instance');
+                       OC.debug && console.debug('DEPRECATED: please use lazyLoadPreview() from an OCA.Files.FileList instance');
                        return FileList.lazyLoadPreview({
                                path: path,
                                mime: mime,
index bef668ae2986598e379a22d066a6a4a599c492f6..b8fe3b53994ef18940cc116165d23dcec576f0f3 100644 (file)
@@ -52,7 +52,7 @@ export default class ExternalLinkActions {
         * @return {boolean}
         */
        registerAction(action) {
-               console.debug('OCA.Sharing.ExternalLinkActions is deprecated, use OCA.Sharing.ExternalShareAction instead')
+               OC.debug && console.debug('OCA.Sharing.ExternalLinkActions is deprecated, use OCA.Sharing.ExternalShareAction instead')
 
                if (typeof action === 'object' && action.icon && action.name && action.url) {
                        this._state.actions.push(action)
index fffed92dede7850167c4faaa00690906aa919985..8fc21abf3694869e2478bf25eef3433c58fefc55 100644 (file)
@@ -32,6 +32,6 @@ import { getCapabilities as realGetCapabilities } from '@nextcloud/capabilities'
  * @since 14.0.0
  */
 export const getCapabilities = () => {
-       console.debug('OC.getCapabilities is deprecated and will be removed in Nextcloud 21. See @nextcloud/capabilities')
+       OC.debug && console.debug('OC.getCapabilities is deprecated and will be removed in Nextcloud 21. See @nextcloud/capabilities')
        return realGetCapabilities()
 }
index db6b0eccae03c35c4f224bd6a222deed92cd3dca..42ac73ef07db7820f740de57fec11ea9e0cd26a6 100644 (file)
@@ -124,7 +124,7 @@ export default {
         */
        formatDate(timestamp, format) {
                if (window.TESTING === undefined) {
-                       console.debug('OC.Util.formatDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
+                       OC.debug && console.debug('OC.Util.formatDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
                }
                format = format || 'LLL'
                return moment(timestamp).format(format)
@@ -136,7 +136,7 @@ export default {
         */
        relativeModifiedDate(timestamp) {
                if (window.TESTING === undefined) {
-                       console.debug('OC.Util.relativeModifiedDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
+                       OC.debug && console.debug('OC.Util.relativeModifiedDate is deprecated and will be removed in Nextcloud 21. See @nextcloud/moment')
                }
                const diff = moment().diff(moment(timestamp))
                if (diff >= 0 && diff < 45000) {
index e206e04f4b7db35992556dc507f9cc2783264dff..81a86a04247614bcd885acdd7e8792596609bf91 100644 (file)
@@ -26,7 +26,7 @@ export default class Search {
         * @deprecated 20.0.0, will be removed in Nextcloud 22
         */
        constructor() {
-               console.debug('OCA.Search is deprecated. Please use the unified search API instead')
+               OC.debug && console.debug('OCA.Search is deprecated. Please use the unified search API instead')
        }
 
 }
index dcad2bcdbf66a9fa355c29b277db81df13de884d..61ad3921999b50b75421ec46615a7d6d2a6931e3 100644 (file)
@@ -56,7 +56,7 @@ import { getToken as getRequestToken } from './OC/requesttoken.js'
 
 const warnIfNotTesting = function() {
        if (window.TESTING === undefined) {
-               console.debug.apply(console, arguments)
+               OC.debug && console.debug.apply(console, arguments)
        }
 }
 
index d91c94c18acfaa9128be8af21950b527a8f4db5e..b77692fdf39699ca8c458c2049f90d1d88c57791 100644 (file)
@@ -140,7 +140,7 @@ const toRgb = (s) => {
 }
 
 String.prototype.toRgb = function() {
-       console.debug('String.prototype.toRgb is deprecated! It will be removed in Nextcloud 22.')
+       OC.debug && console.debug('String.prototype.toRgb is deprecated! It will be removed in Nextcloud 22.')
 
        return toRgb(this)
 }