diff --git a/widgets/DapBusyIndicator.qml b/widgets/DapBusyIndicator.qml
index ce2c27b8cb5828e0ce26c303d457dd78c958e4c9..18957c24d9eb96e72a076262eb877b845171e1f0 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")
-    }
 
 }