webmcp

view framework/env/trace/execution_return.lua @ 0:9fdfb27f8e67

Version 1.0.0
author jbe/bsw
date Sun Oct 25 12:00:00 2009 +0100 (2009-10-25)
parents
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