diff --git a/modules/debugger/doc/debugger_admin.xml b/modules/debugger/doc/debugger_admin.xml index cddfc26746f..0ae70a2f005 100644 --- a/modules/debugger/doc/debugger_admin.xml +++ b/modules/debugger/doc/debugger_admin.xml @@ -616,6 +616,83 @@ P-Hint: My hint + +
+ Exported MI Functions + +
+ <function moreinfo="none">set_dbg_mod_level mod_name level</function> + + Set the module log level. + If module does not exist in kamailio, the entry in the level hashtable is still added for the bogus module. + + + <function moreinfo="none">set_dbg_mod_level</function> usage + +... +$ &ctltool; fifo set_dbg_mod_level core 2 +$ &ctltool; fifo set_dbg_mod_level debugger 3 +... + + +
+ +
+ <function moreinfo="none">set_dbg_mod_facility mod_name facility</function> + + Set the mod_name log facility. + If mod_name does not exist in kamailio, the entry in the facility hashtable is still added for the bogus mod_name. + + + <function moreinfo="none">set_dbg_mod_facility</function> usage + +... +$ &ctltool; fifo set_dbg_mod_facility core LOG_LOCAL1 +$ &ctltool; fifo set_dbg_mod_facility debugger LOG_LOCAL0 +... + + +
+ +
+ <function moreinfo="none">get_dbg_mod_level mod_name</function> + + Get the mod_name log level. + If mod_name does not exist in the level hashtable, returns the config file value. + + + <function moreinfo="none">get_dbg_mod_level</function> usage + +... +$ &ctltool; fifo get_dbg_mod_level core +$ &ctltool; fifo get_dbg_mod_level debugger +... + + +
+ +
+ <function moreinfo="none">get_dbg_mod_facility mod_name</function> + + Get the mod_name log facility. + If mod_name does not exist in the facility hashtable, returns the config file value. + + + <function moreinfo="none">get_dbg_mod_facility</function> usage + +... +$ &ctltool; fifo get_dbg_mod_facility core +$ &ctltool; fifo get_dbg_mod_facility debugger +... + + +
+ +
+ + + +
Exported RPC Functions