Removed debugging-related print call from rscr/controller.lua
authorOlav Bakke Svendsen <mail@olavbs.no>
Thu, 30 May 2024 13:42:26 +0000 (15:42 +0200)
committerOlav Bakke Svendsen <mail@olavbs.no>
Thu, 30 May 2024 13:42:26 +0000 (15:42 +0200)
rscr/controller.lua

index ec1831adb7fcad0075ea676cdd625a909bd7d7a0..057dfedba654f8c1690847bf4a859d7783bdf5bf 100644 (file)
@@ -124,12 +124,7 @@ end
 
 local update_remotes
 update_remotes = function()
-  if update() then
-    transmit(st)
-    print(os.clock(), "updating...")
-  else
-    print(os.clock(), "nothing to update")
-  end
+  if update() then transmit(st) end
   os.sleep(2)
   return update_remotes()
 end