removed verbose logging

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

View File

@ -8,4 +8,6 @@ u80864958_at_u80864958 = 6021
[24-10-15]
schreifuchs_at_archlinux = 128
[24-11-06]
schreifuchs_at_archibald = 301
schreifuchs_at_archibald = 18
[24-12-25]
schreifuchs_at_archibald = 204

View File

@ -1,11 +0,0 @@
## dates and their corresponding seconds been here :)
[24-10-07]
u80864958_at_u80864958 = 432
[24-10-08]
u80864958_at_u80864958 = 425
[24-10-11]
u80864958_at_u80864958 = 6021
[24-10-15]
schreifuchs_at_archlinux = 128
[24-11-06]
schreifuchs_at_archibald = 18

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