Add debug print

This commit is contained in:
Kodi Craft 2025-03-25 17:45:55 +01:00
parent d575f3c98c
commit e079d75fab
Signed by: kodi
GPG Key ID: 69D9EED60B242822

View File

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