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

iuliana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git


The following commit(s) were added to refs/heads/master by this push:
     new a4a2a64  Remove redundant logging in the blueprint graph
     new f95ce8c  Merge pull request #266 from algairim/blueprint-composer-fixes
a4a2a64 is described below

commit a4a2a647587020726555e9b866d9b78591f36c4c
Author: Mykola Mandra <mykola.man...@cloudsoft.io>
AuthorDate: Mon Aug 9 17:47:19 2021 +0100

    Remove redundant logging in the blueprint graph
    
    Signed-off-by: Mykola Mandra <mykola.man...@cloudsoft.io>
---
 ui-modules/blueprint-composer/app/components/util/d3-blueprint.js | 2 --
 1 file changed, 2 deletions(-)

diff --git a/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js 
b/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js
index 0039398..f4fedeb 100755
--- a/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js
+++ b/ui-modules/blueprint-composer/app/components/util/d3-blueprint.js
@@ -1230,7 +1230,6 @@ export function D3Blueprint(container, options) {
      * @param id The ID of the node to drop shadow over.
      */
     function dropShadow(id) {
-        console.log('[drop]', id);
         if (id) {
             _svg.select(`#entity-${id}`).classed('drop-shadow', true);
         } else {
@@ -1243,7 +1242,6 @@ export function D3Blueprint(container, options) {
      * @param id The ID of the node to hide shadow of.
      */
     function hideShadow(id) {
-        console.log('[hide]', id);
         if (id) {
             _svg.select(`#entity-${id}`).classed('drop-shadow', false);
         } else {

Reply via email to