From e6c67a10048f1263c38744450f5f3f1c9d0d681c Mon Sep 17 00:00:00 2001
From: "tatiana.novikova" <tatiana.novikova@demlabs.net>
Date: Thu, 12 Mar 2020 15:33:41 +0300
Subject: [PATCH] [-] Delete debug output

---
 widgets/DapBusyIndicator.qml | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/widgets/DapBusyIndicator.qml b/widgets/DapBusyIndicator.qml
index ce2c27b..18957c2 100644
--- a/widgets/DapBusyIndicator.qml
+++ b/widgets/DapBusyIndicator.qml
@@ -58,17 +58,11 @@ DapBusyIndicatorForm
                         interval: busyIndicatorDelay * (index)
                         onTriggered:
                         {
-                            console.log("reset triggered, index: ", index)
                             parent.opacity = 1
                             parent.color = busyIndicatorDarkColor
                             parent.scale = busyPointMaxScale
                             reset2.start()
                         }
-                        onRunningChanged:
-                        {
-                            if(running) console.log("reset start, index: ", index)
-                            else console.log("reset stop, index: ", index)
-                        }
                     }
                     //Timer of point transformation at one position
                     Timer
@@ -77,16 +71,10 @@ DapBusyIndicatorForm
                         interval: busyIndicatorDelay
                         onTriggered:
                         {
-                            console.log("reset2 triggered, index: ", index)
                             parent.opacity = 1
                             parent.color = busyIndicatorLightColor
                             parent.scale = busyPointMinScale
                         }
-                        onRunningChanged:
-                        {
-                            if(running) console.log("reset2 start, index: ", index)
-                            else console.log("reset2 stop, index: ", index)
-                        }
                     }
                     //Timer of all busy indicator transformation
                     Timer
@@ -95,7 +83,6 @@ DapBusyIndicatorForm
                         interval: busyIndicatorDelay * busyPointNum
                         onTriggered:
                         {
-                            console.log("globalTimer triggered, index: ", index)
                             reset.start()
                         }
                         triggeredOnStart: true
@@ -118,13 +105,5 @@ DapBusyIndicatorForm
                 }
             }
         }
-    onRunningChanged:
-    {
-        if(running)
-        {
-            console.log("running all")
-        }
-        else console.log("stop all")
-    }
 
 }
-- 
GitLab