Compare commits

...

2 Commits

Author SHA1 Message Date
b0f8c1267a
Merge branch 'main' of git.colon-three.com:kodi/snowier 2025-03-25 17:46:06 +01:00
e079d75fab
Add debug print 2025-03-25 17:45:55 +01:00

View File

@ -12,6 +12,11 @@ function log.info(value)
print("[I] " .. value) print("[I] " .. value)
end end
--- @param value string
function log.debug(value)
print("[D] " .. value)
end
--- @param value string --- @param value string
function log.error(value) function log.error(value)
printError("[E] " .. value) printError("[E] " .. value)
@ -28,6 +33,7 @@ local function main()
shafile.close() shafile.close()
sharequest.close() sharequest.close()
end end
log.debug(package.path)
local hash = require("sha256") local hash = require("sha256")
log.info("Downloading index file") log.info("Downloading index file")