projects
/
cc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6dc79ea
)
Removed debugging-related print call from rscr/controller.lua
author
Olav Bakke Svendsen
<mail@olavbs.no>
Thu, 30 May 2024 13:42:26 +0000
(15:42 +0200)
committer
Olav Bakke Svendsen
<mail@olavbs.no>
Thu, 30 May 2024 13:42:26 +0000
(15:42 +0200)
rscr/controller.lua
patch
|
blob
|
history
diff --git
a/rscr/controller.lua
b/rscr/controller.lua
index ec1831adb7fcad0075ea676cdd625a909bd7d7a0..057dfedba654f8c1690847bf4a859d7783bdf5bf 100644
(file)
--- 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