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

[*] Fix.

parent 65c71cd2
No related branches found
No related tags found
1 merge request!11Bugs 3310 - Fixed typo in checking logging level during plugin initialization. Added a call to the PyType_Ready function, which adds inherited slots from the base class for the CryptoCert object.
...@@ -107,7 +107,7 @@ PyObject *python_cellframe_init(PyObject *self, PyObject *args){ ...@@ -107,7 +107,7 @@ PyObject *python_cellframe_init(PyObject *self, PyObject *args){
dap_log_level_set(L_WARNING); dap_log_level_set(L_WARNING);
}else if ( dap_strcmp( log_level, "L_ATT" )==0 || dap_strcmp( log_level, "ATTENTION" )==0 ){ }else if ( dap_strcmp( log_level, "L_ATT" )==0 || dap_strcmp( log_level, "ATTENTION" )==0 ){
dap_log_level_set(L_ATT); dap_log_level_set(L_ATT);
}else if ( dap_strcmp( log_level, "ERROR" )==0 || dap_strcmp( log_level, "ERROR" )==0 ){ }else if ( dap_strcmp( log_level, "L_ERROR" )==0 || dap_strcmp( log_level, "ERROR" )==0 ){
dap_log_level_set(L_ERROR); dap_log_level_set(L_ERROR);
}else if ( dap_strcmp( log_level, "L_CRITICAL" )==0 || dap_strcmp( log_level, "CRITICAL" )==0 ){ }else if ( dap_strcmp( log_level, "L_CRITICAL" )==0 || dap_strcmp( log_level, "CRITICAL" )==0 ){
dap_log_level_set(L_CRITICAL); dap_log_level_set(L_CRITICAL);
......
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