webmcp
view framework/env/trace/enter_config.lua @ 438:ea8419658535
Another change to make <db_object>:try_save() work properly with "document_column"
(use "_col" proxy also for accessing self._col[primary_key.json_doc])
(use "_col" proxy also for accessing self._col[primary_key.json_doc])
author | jbe |
---|---|
date | Wed Jan 20 21:06:07 2016 +0100 (2016-01-20) |
parents | 0bbfee4d4aed |
children |
line source
1 --[[--
2 trace.enter_config{
3 name = name
4 }
6 This function is used by execute.config and logs the inclusion of a configuration.
8 --]]--
10 function trace.enter_config(args)
11 if not trace._disabled then
12 local name = args.name
13 if type(name) ~= "string" then
14 error("No name string passed to trace.enter_config{...}.")
15 end
16 trace._open_section{ type = "config", name = name }
17 end
18 end