Commit 1c1dee6dbe38cb8526ce3e0211009c1405b66805

Authored by Menouar AZIB
1 parent 50098ef1

Delete some usefull logs

js/app/views/PlotComponents/PlotZoomPlug.js
... ... @@ -60,7 +60,6 @@ Ext.define('amdaPlotComp.PlotZoomPlug', {
60 60 * @param {*} listParams_ parameters displayed on the current panel
61 61 */
62 62 setParameters: function (listParams_) {
63   - console.log(this.path_context_file);
64 63 this.listParams = listParams_;
65 64 //this.plotFunctionParamField = new amdaPlotComp.plotFunction.ParamField({ params: this.listParams });
66 65 this.plotFunctionType = new amdaPlotComp.plotFunction.FunctionType({});
... ... @@ -471,7 +470,6 @@ Ext.define('amdaPlotComp.PlotZoomPlug', {
471 470 'stoptime': stop_time
472 471 });
473 472  
474   - console.log(request_to_send);
475 473 // const parent = this;
476 474 this.hostCmp.callInteractivePlot(request_to_send);/*, function () {
477 475 Ext.Ajax.request({
... ...
js/app/views/PlotTabResultUI.js
... ... @@ -80,7 +80,6 @@ Ext.define('amdaUI.PlotTabResultUI', {
80 80 var size = this.getImageSize();
81 81 // We need a list of parameters to compute the number of points needed to apply FFT
82 82 this.listParams = panelContext["parameters"];
83   - console.log(this.crtContext);
84 83 zoomPlugin.path_context_file = 'data/' + sessionID + '/RES/' + this.configResult.folder + '/' + "plotFunction0_context.xml";
85 84 zoomPlugin.setParameters(this.listParams);
86 85  
... ... @@ -467,7 +466,6 @@ Ext.define('amdaUI.PlotTabResultUI', {
467 466 var t = e.getTransaction();
468 467 if (e.status) {
469 468 if (result) {
470   - console.log(result);
471 469 if (result.success) {
472 470 plotModule.updateInteractiveSession(result, false, obj['panelId'], obj['time']);
473 471 }
... ... @@ -694,7 +692,6 @@ Ext.define('amdaUI.PlotTabResultUI', {
694 692  
695 693 init: function (configResult) {
696 694 this.crtContext = configResult.context;
697   - console.log(configResult);
698 695 this.configResult = configResult;
699 696 this.interactiveId = configResult.interactiveId;
700 697 this.multiplot = (configResult.multiplot == true);
... ...