Skip to content
Snippets Groups Projects
Commit 45c83dbe authored by dmitriy.gerasimov's avatar dmitriy.gerasimov
Browse files

[-] Useless debug output

[+] Usefull debug output
parent 6627a859
No related branches found
No related tags found
No related merge requests found
......@@ -446,7 +446,7 @@ void dap_chain_cert_add_folder(const char *a_folder_path)
char * l_cert_name = dap_strdup(l_filename);
l_cert_name[l_filename_len-l_suffix_len] = '\0'; // Remove suffix
// Load the cert file
log_it(L_DEBUG,"Trying to load %s",l_filename);
//log_it(L_DEBUG,"Trying to load %s",l_filename);
dap_chain_cert_add_file(l_cert_name,a_folder_path);
}
}
......
......@@ -221,7 +221,7 @@ dap_chain_cert_t* dap_chain_cert_mem_load(void * a_data, size_t a_data_size)
memcpy(l_ret->enc_key->_inheritor, l_data + l_data_offset, l_ret->enc_key->_inheritor_size);
}
dap_enc_key_update(l_ret->enc_key);
log_it(L_NOTICE,"Successfully loaded certificate");
log_it(L_NOTICE,"Successfully loaded certificate %s", l_ret->name);
}else
log_it(L_ERROR,"Unrecognizable certificate version, corrupted file or you have too old software");
......
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