]> source.dussan.org Git - vaadin-framework.git/commitdiff
Remove widget attach/detach logging from Grid (#13334)
authorTeemu Suo-Anttila <teemusa@vaadin.com>
Wed, 27 Aug 2014 12:11:29 +0000 (15:11 +0300)
committerLeif Åstrand <leif@vaadin.com>
Thu, 28 Aug 2014 06:34:32 +0000 (06:34 +0000)
Change-Id: I794daf62ccab996872f92bb750b3d47f027869a6

client/src/com/vaadin/client/ui/grid/Grid.java

index 442bc1a228d9a5de74019ab46a5fdf8fc048cacb..4d8aa25c3bc3106bbeeca4e4eb8e29009249a789 100644 (file)
@@ -1158,8 +1158,6 @@ public class Grid<T> extends Composite implements
 
                         // Logical attach
                         setParent(widget, Grid.this);
-
-                        getLogger().info("Attached widget " + widget);
                     }
                 }
             }
@@ -1185,8 +1183,6 @@ public class Grid<T> extends Composite implements
 
                         // Physical detach
                         widget.getElement().removeFromParent();
-
-                        getLogger().info("Detached widget " + widget);
                     }
                 }
             }