Skip to content
Snippets Groups Projects
Commit 33f2ea24 authored by alexey.stratulat's avatar alexey.stratulat
Browse files

Edit function dap_deinit. Added output information on the performance of this function.

parent 0352440c
No related branches found
No related tags found
No related merge requests found
...@@ -26,9 +26,14 @@ static PyObject *dap_init(PyObject *self, PyObject *args){ ...@@ -26,9 +26,14 @@ static PyObject *dap_init(PyObject *self, PyObject *args){
} }
static PyObject *dap_deinit(){ static PyObject *dap_deinit(){
log_it(L_DEBUG, "Running function dap_deinit");
dap_config_close(g_config); dap_config_close(g_config);
log_it(L_DEBUG, "Config file closed.");
dap_config_deinit(); dap_config_deinit();
log_it(L_DEBUG, "Function dap_config_deinit done.");
dap_common_deinit(); dap_common_deinit();
log_it(L_DEBUG, "Function dap_common_deinit done.");
log_it(L_DEBUG, "Function dap_deinit done.");
return PyLong_FromLong(0); return PyLong_FromLong(0);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment