webmcp

view framework/env/trace/execution_return.lua @ 7:f7413a1a872c

Tags for v1.0.0 to v1.0.6 added
author jbe
date Sat Jan 30 12:41:37 2010 +0100 (2010-01-30)
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