You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ea...@apache.org on 2019/10/01 13:53:00 UTC

[qpid-dispatch] 03/04: Remove debugging console.log statements

This is an automated email from the ASF dual-hosted git repository.

eallen pushed a commit to branch eallen-DISPATCH-1385
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git

commit b40ba3d3c0209333c9431d7be2fb34ec4fcffc9e
Author: Ernest Allen <ea...@redhat.com>
AuthorDate: Tue Oct 1 09:52:14 2019 -0400

    Remove debugging console.log statements
---
 console/react/src/chord/qdrChord.js               | 1 -
 console/react/src/contextMenuComponent.jsx        | 1 -
 console/react/src/topology/clientInfoComponent.js | 8 --------
 3 files changed, 10 deletions(-)

diff --git a/console/react/src/chord/qdrChord.js b/console/react/src/chord/qdrChord.js
index 24a5caf..854fc86 100644
--- a/console/react/src/chord/qdrChord.js
+++ b/console/react/src/chord/qdrChord.js
@@ -843,7 +843,6 @@ class MessageFlowPage extends Component {
 
   // one of the legend sections was opened or closed
   handleOpenChange = (id, isOpen) => {
-    console.log(`handleOpenChange called with ${id} and ${isOpen}`);
     const { legendOptions } = this.state;
     legendOptions[`${id}Open`] = isOpen;
     this.setState({ legendOptions });
diff --git a/console/react/src/contextMenuComponent.jsx b/console/react/src/contextMenuComponent.jsx
index 81029d1..18dd46c 100644
--- a/console/react/src/contextMenuComponent.jsx
+++ b/console/react/src/contextMenuComponent.jsx
@@ -31,7 +31,6 @@ class ContextMenuComponent extends React.Component {
   };
 
   handleHide = e => {
-    console.log("handleHide called");
     this.unregisterHandlers();
     this.props.handleContextHide();
   };
diff --git a/console/react/src/topology/clientInfoComponent.js b/console/react/src/topology/clientInfoComponent.js
index f5dde19..8ef3dad 100644
--- a/console/react/src/topology/clientInfoComponent.js
+++ b/console/react/src/topology/clientInfoComponent.js
@@ -363,11 +363,6 @@ class ClientInfoComponent extends Component {
         this.dStart = 0;
         this.dStop = Math.min(this.d.normals.length, 10);
         this.updateTimer = setTimeout(this.doUpdateDetail, 2000);
-
-        console.log(` ------- detail -------`);
-        console.log(this.state.detail);
-        console.log(rows);
-        console.log(` --------------`);
       }
     });
   };
@@ -406,8 +401,6 @@ class ClientInfoComponent extends Component {
         });
         subRows.push({ cells: subCells });
       });
-      console.log(" === subRows ===");
-      console.log(subRows);
 
       newRows.push({
         parent: i * 2,
@@ -427,7 +420,6 @@ class ClientInfoComponent extends Component {
         ]
       });
     }
-    console.log(newRows);
     return newRows;
   };
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org