Added debug level INIT
This commit is contained in:
parent
3b0b734de1
commit
ff171afd65
14 changed files with 45 additions and 42 deletions
|
|
@ -60,24 +60,27 @@
|
|||
/* Subject area */
|
||||
#define CLIXON_DBG_DEFAULT 0x00000001 /* Default logs */
|
||||
#define CLIXON_DBG_MSG 0x00000002 /* In/out messages */
|
||||
#define CLIXON_DBG_XML 0x00000004 /* XML processing */
|
||||
#define CLIXON_DBG_XPATH 0x00000008 /* XPath processing */
|
||||
#define CLIXON_DBG_YANG 0x00000010 /* YANG processing */
|
||||
#define CLIXON_DBG_BACKEND 0x00000020 /* Backend-specific */
|
||||
#define CLIXON_DBG_CLI 0x00000040 /* CLI frontend */
|
||||
#define CLIXON_DBG_NETCONF 0x00000080 /* NETCONF frontend */
|
||||
#define CLIXON_DBG_RESTCONF 0x00000100 /* RESTCONF frontend */
|
||||
#define CLIXON_DBG_SNMP 0x00000200 /* SNMP frontend */
|
||||
#define CLIXON_DBG_NACM 0x00000400 /* NACM processing */
|
||||
#define CLIXON_DBG_PROC 0x00000800 /* Process handling */
|
||||
#define CLIXON_DBG_DATASTORE 0x00001000 /* Datastore management */
|
||||
#define CLIXON_DBG_EVENT 0x00002000 /* Event processing */
|
||||
#define CLIXON_DBG_RPC 0x00004000 /* RPC handling */
|
||||
#define CLIXON_DBG_STREAM 0x00008000 /* Notification streams */
|
||||
#define CLIXON_DBG_APP 0x00010000 /* External application */
|
||||
#define CLIXON_DBG_APP2 0x00020000 /* External application 2 */
|
||||
#define CLIXON_DBG_APP3 0x00040000 /* External application 3 */
|
||||
#define CLIXON_DBG_SMASK 0x0003ffff /* Subject mask */
|
||||
#define CLIXON_DBG_INIT 0x00000004 /* Initialization */
|
||||
#define CLIXON_DBG_XML 0x00000008 /* XML processing */
|
||||
#define CLIXON_DBG_XPATH 0x00000010 /* XPath processing */
|
||||
#define CLIXON_DBG_YANG 0x00000020 /* YANG processing */
|
||||
#define CLIXON_DBG_BACKEND 0x00000040 /* Backend-specific */
|
||||
#define CLIXON_DBG_CLI 0x00000080 /* CLI frontend */
|
||||
#define CLIXON_DBG_NETCONF 0x00000100 /* NETCONF frontend */
|
||||
#define CLIXON_DBG_RESTCONF 0x00000200 /* RESTCONF frontend */
|
||||
#define CLIXON_DBG_SNMP 0x00000400 /* SNMP frontend */
|
||||
#define CLIXON_DBG_NACM 0x00000800 /* NACM processing */
|
||||
#define CLIXON_DBG_PROC 0x00001000 /* Process handling */
|
||||
#define CLIXON_DBG_DATASTORE 0x00002000 /* Datastore management */
|
||||
#define CLIXON_DBG_EVENT 0x00004000 /* Event processing */
|
||||
#define CLIXON_DBG_RPC 0x00008000 /* RPC handling */
|
||||
#define CLIXON_DBG_STREAM 0x00010000 /* Notification streams */
|
||||
|
||||
/* External applications */
|
||||
#define CLIXON_DBG_APP 0x00100000 /* External application */
|
||||
#define CLIXON_DBG_APP2 0x00200000 /* External application 2 */
|
||||
#define CLIXON_DBG_APP3 0x00400000 /* External application 3 */
|
||||
#define CLIXON_DBG_SMASK 0x00ffffff /* Subject mask */
|
||||
|
||||
/*
|
||||
* Macros
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue