webmcp

view framework/env/trace/execution_return.lua @ 36:5380305a3d51

allow multiple arguments to trace.debug

you can now write trace.debug("bla", 2, ...)
author Daniel Poelzleithner <poelzi@poelzi.org>
date Sat Oct 09 00:57:26 2010 +0200 (2010-10-09)
parents 9fdfb27f8e67
children 0bbfee4d4aed
line source
1 --[[--
2 trace.execution_return{
3 status = status -- optional status
4 }
6 This function is called automatically when returning from a view, action, configuration or filter for logging purposes.
8 --]]--
10 function trace.execution_return(args)
11 local status
12 if args then
13 status = args.status
14 end
15 if status and type(status) ~= "string" then
16 error("Status passed to trace.execution_return{...} is not a string.")
17 end
18 local closed_section = trace._close_section()
19 closed_section.status = status
20 end

Impressum / About Us