[NUI] Sync dalihub & Fix VD build error (#824)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / Layouting / LayoutController.cs
index e395494..397a404 100644 (file)
@@ -80,6 +80,7 @@ namespace Tizen.NUI
             }
         }
 
+
         /// <summary>
         /// Destructor which adds LayoutController to the Dispose queue.
         /// </summary>
@@ -139,13 +140,11 @@ namespace Tizen.NUI
                 {
                     if (rootNode.GetType() == typeof(View))
                     {
-                        Log.Info("NUI", "Creating LayoutGroup for " + rootNode.Name  + "\n");
                         rootNode.Layout = new LayoutGroup();
                         AutomaticallyAssignLayouts(rootNode);
                     }
                     else
                     {
-                        Log.Info("NUI", "Creating LayoutItem for " + rootNode.Name  + "\n");
                         rootNode.Layout = new LayoutItem();
                     }
                 }
@@ -197,8 +196,6 @@ namespace Tizen.NUI
                     rootSize = new Size2D(_window.Size.Width, _window.Size.Height);
                 }
 
-                Log.Info("NUI", "Root parent size(" + rootSize.Width + "," + rootSize.Height + ")\n");
-
                 // Determine measure specification for root.
                 // The root layout policy could be an exact size, be match parent or wrap children.
                 // If wrap children then at most it can be the root parent size.
@@ -254,14 +251,13 @@ namespace Tizen.NUI
         /// </summary>
         private void Process(int id)
         {
-            Log.Info("NUI", "LayoutController Process id:" + id + "\n");
-
             Layer defaultLayer = _window.GetDefaultLayer();
             for (uint i = 0; i < defaultLayer.ChildCount; i++)
             {
                 View view = defaultLayer.GetChildAt(i);
                 FindRootLayouts(view);
             }
+
         }
 
         /// <summary>