removed verbose logging

This commit is contained in:
2024-12-25 14:01:50 +01:00
parent 0dbfa8f422
commit be98b94f97
4 changed files with 5 additions and 16 deletions

View File

@ -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

View File

@ -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