diff options
Diffstat (limited to 'mgmtd/mgmt.c')
| -rw-r--r-- | mgmtd/mgmt.c | 16 | 
1 files changed, 12 insertions, 4 deletions
diff --git a/mgmtd/mgmt.c b/mgmtd/mgmt.c index fe0357e7e4..cfadad4829 100644 --- a/mgmtd/mgmt.c +++ b/mgmtd/mgmt.c @@ -15,10 +15,14 @@  #include "mgmtd/mgmt_history.h"  #include "mgmtd/mgmt_memory.h" -struct debug mgmt_debug_be = { .desc = "Management backend adapter" }; -struct debug mgmt_debug_ds = {.desc = "Management datastore"}; -struct debug mgmt_debug_fe = { .desc = "Management frontend adapter" }; -struct debug mgmt_debug_txn = {.desc = "Management transaction"}; +struct debug mgmt_debug_be = { .conf = "debug mgmt backend", +			       .desc = "Management backend adapter" }; +struct debug mgmt_debug_ds = { .conf = "debug mgmt datastore", +			       .desc = "Management datastore" }; +struct debug mgmt_debug_fe = { .conf = "debug mgmt frontend", +			       .desc = "Management frontend adapter" }; +struct debug mgmt_debug_txn = { .conf = "debug mgmt transaction", +				.desc = "Management transaction" };  /* MGMTD process wide configuration.  */  static struct mgmt_master mgmt_master; @@ -39,6 +43,10 @@ void mgmt_master_init(struct event_loop *master, const int buffer_size)  void mgmt_init(void)  { +	debug_install(&mgmt_debug_be); +	debug_install(&mgmt_debug_ds); +	debug_install(&mgmt_debug_fe); +	debug_install(&mgmt_debug_txn);  	/* Initialize datastores */  	mgmt_ds_init(mm);  | 
