]> git.proxmox.com Git - proxmox-backup.git/commitdiff
ui: datastore prune: remove debug logging
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 26 May 2020 10:50:06 +0000 (12:50 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 26 May 2020 10:50:06 +0000 (12:50 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/DataStorePrune.js

index 5c6bc9c09695300bdec285f1fadfc84fd182a660..18ced062bf8c8f767db4e20de9e162e847233fb6 100644 (file)
@@ -52,14 +52,13 @@ Ext.define('PBS.DataStorePruneInputPanel', {
                method: "POST",
                params: params,
                callback: function() {
-                   console.log("DONE");
+                   return; // for easy breakpoint setting
                },
                failure: function (response, opts) {
                    Ext.Msg.alert(gettext('Error'), response.htmlStatus);
                },
                success: function(response, options) {
                    var data = response.result.data;
-                   console.log(data);
                    view.prune_store.setData(data);
                }
            });