removed verbose logging
This commit is contained in:
@ -10,7 +10,7 @@ local clean_to = 1
|
||||
|
||||
|
||||
|
||||
local function clean_from(from, events)
|
||||
local function clean_from(from, events) -- cleans the events
|
||||
local clean_events = {}
|
||||
|
||||
-- coppy until from
|
||||
@ -46,7 +46,7 @@ local function clean_from(from, events)
|
||||
return clean_events
|
||||
end
|
||||
|
||||
local function summ_time()
|
||||
local function summ_time() --returns time in seconds from the fous events
|
||||
focus_events = clean_from(clean_to + 1, focus_events)
|
||||
clean_to = #focus_events
|
||||
|
||||
|
@ -573,8 +573,6 @@ TOML.encode = function(tbl)
|
||||
|
||||
for _, k in pairs(tbl_keys) do
|
||||
local v = tbl[k]
|
||||
print(k)
|
||||
print(v)
|
||||
if type(v) == "boolean" then
|
||||
toml = toml .. k .. " = " .. tostring(v) .. "\n"
|
||||
elseif type(v) == "number" then
|
||||
|
Reference in New Issue
Block a user