From: Olav Bakke Svendsen Date: Thu, 30 May 2024 13:42:26 +0000 (+0200) Subject: Removed debugging-related print call from rscr/controller.lua X-Git-Tag: rscr~3 X-Git-Url: http://git.olavbs.no/?a=commitdiff_plain;h=41874dc9e643d54d93ae66041bbc3ccf302ee1ab;p=cc.git Removed debugging-related print call from rscr/controller.lua --- diff --git a/rscr/controller.lua b/rscr/controller.lua index ec1831a..057dfed 100644 --- a/rscr/controller.lua +++ b/rscr/controller.lua @@ -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