mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
Add debug print to lua_preload example file
This commit is contained in:
parent
67a162997f
commit
3a84b59572
@ -69,9 +69,20 @@ SAPI.Response.write = function(...)
|
||||
end
|
||||
|
||||
|
||||
-- Debug helper function to print a table
|
||||
function po(t)
|
||||
print("Type: " .. type(t) .. ", Value: " .. tostring(t))
|
||||
if type(t)=="table" then
|
||||
for k,v in pairs(t) do
|
||||
print(k,v)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-----------------------------------------------------
|
||||
|
||||
|
||||
-- Use cgilua interface
|
||||
require "cgilua"
|
||||
-- require "cgilua"
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user