Changed all "old-style" debug calls to new dbg calls.

FossilOrigin-Name: 2e98f08a020add71cecfd7d1902ba88cc5a5a48daf9574e85974674c9a6412cc
This commit is contained in:
7u83@mail.ru
2015-02-07 10:51:29 +00:00
parent e74e8bbf89
commit d5b690213e
17 changed files with 37 additions and 31 deletions

View File

@ -26,7 +26,7 @@ static int acinfo_readelem_join_resp(void * a,int type,uint8_t* msgelem,int len)
{
struct ac_info * acinfo = (struct ac_info *)a;
cw_log_debug1("Process join resp msgelem, type=%d, len=%d\n",type,len);
// cw_log_debug1("Process join resp msgelem, type=%d, len=%d\n",type,len);
if (acinfo_readelem_ecn_support(acinfo,type,msgelem,len))
return 1;
@ -50,7 +50,7 @@ static int acinfo_readelem_join_resp(void * a,int type,uint8_t* msgelem,int len)
void cwread_join_response(struct ac_info * acinfo, uint8_t * msg, int len)
{
cw_log_debug1("Reading join response");
// cw_log_debug1("Reading join response");
cw_foreach_msgelem(msg,len,acinfo_readelem_join_resp,acinfo);
}