diff options
author | streetturtle <streetturtle@gmail.com> | 2020-08-13 13:54:08 -0400 |
---|---|---|
committer | streetturtle <streetturtle@gmail.com> | 2020-08-13 13:54:08 -0400 |
commit | aed5e8a2bfb9b16bbb7b6199817eada030362762 (patch) | |
tree | 73e32638802597701d900112757079301672bc43 | |
parent | 1abaf026767c2485a8249b6e9316316beb1bf32a (diff) |
[net] remove debug output
-rw-r--r-- | net-speed-widget/net-speed.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net-speed-widget/net-speed.lua b/net-speed-widget/net-speed.lua index 7c12ad8..5f81a18 100644 --- a/net-speed-widget/net-speed.lua +++ b/net-speed-widget/net-speed.lua @@ -109,9 +109,6 @@ local function worker(args) if i%2 == 0 then cur_tx = cur_tx + cur_vals[i] end end - print('cur_rx = ' .. cur_rx) - print('cur_tx = ' .. cur_tx) - local speed_rx = cur_rx - prev_rx local speed_tx = cur_tx - prev_tx |