From 26956d73a26e47291bb3cc197c92e6f952ede459 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 26 May 2020 12:50:06 +0200 Subject: [PATCH] ui: datastore prune: remove debug logging Signed-off-by: Thomas Lamprecht --- www/DataStorePrune.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/www/DataStorePrune.js b/www/DataStorePrune.js index 5c6bc9c0..18ced062 100644 --- a/www/DataStorePrune.js +++ b/www/DataStorePrune.js @@ -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); } });