Skip to content

Commit 2e832bc

Browse files
author
mutlusun
committed
remove print statements (for testing purposes)
1 parent 6e185bc commit 2e832bc

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

widgets/mem_freebsd.lua

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,6 @@ local function worker(format)
6060
-- Read content and sum up
6161
for line in f:lines() do
6262
local ltotal, lused, lfree = string.match(line, "%s+([%d]+)%s+([%d]+)%s+([%d]+)")
63-
print(ltotal)
64-
print(lused)
65-
print(lfree)
66-
6763
-- Add swap space in kbytes
6864
_swp.total = _swp.total + tonumber(ltotal)
6965
_swp.inuse = _swp.inuse + tonumber(lused)

0 commit comments

Comments
 (0)