Add debug print
This commit is contained in:
parent
d575f3c98c
commit
e079d75fab
@ -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")
|
||||
|
Loading…
x
Reference in New Issue
Block a user