cleaned up some debug output introduced during previous bug fixes.

This commit is contained in:
gardners 2012-04-30 06:25:54 +09:30
parent c3fe7ee8e3
commit 1ebe63a470
3 changed files with 1 additions and 14 deletions

View File

@ -1160,9 +1160,6 @@ int app_id_self(int argc, const char *const *argv, struct command_line_option *o
if ((a.packetTypeAndFlags&MDP_TYPE_MASK)!=MDP_ADDRLIST)
return WHY("MDP Server returned something other than an address list");
int i;
WHYF("first_sid=%d, last_sid=%d",a.addrlist.first_sid,a.addrlist.last_sid);
WHYF("frame_sid_count=%d, server_sid_count=%d",
a.addrlist.frame_sid_count,a.addrlist.server_sid_count);
for(i=0;i<a.addrlist.frame_sid_count;i++) {
count++;
cli_printf("%s",overlay_render_sid(a.addrlist.sids[i])); cli_delim("\n");

View File

@ -940,20 +940,15 @@ int overlay_mdp_poll()
}
} else {
/* from peer list */
overlay_route_dump();
int bin,slot;
i=0;
count=0;
WHYF("max_sids=%d, sid_num=%d",max_sids,sid_num);
for(bin=0;bin<overlay_bin_count;bin++)
for(slot=0;slot<overlay_bin_size;slot++)
{
if (!overlay_nodes[bin][slot].sid[0])
{
continue; }
WHYF("Considering returning %s* count=%d, sid_num=%d, i=%d, max_sids=%d",
overlay_render_sid_prefix(&overlay_nodes[bin][slot].sid[0],7),
count,sid_num,i,max_sids);
if ((count>=sid_num)&&(i<max_sids)) {
bcopy(overlay_nodes[bin][slot].sid,
mdpreply.addrlist.sids[i++],SID_SIZE);
@ -964,11 +959,6 @@ int overlay_mdp_poll()
mdpreply.addrlist.frame_sid_count=i;
mdpreply.addrlist.last_sid=sid_num+i-1;
mdpreply.addrlist.server_sid_count=count;
WHYF("frame_sid_count=%d, last_sid=%d, server_sid_count=%d",
mdpreply.addrlist.frame_sid_count,
mdpreply.addrlist.last_sid,
mdpreply.addrlist.server_sid_count);
/* Send back to caller */
return overlay_mdp_reply(mdp_named_socket,

View File

@ -904,7 +904,7 @@ int overlay_route_recalc_neighbour_metrics(overlay_neighbour *n,long long now)
/* Check the observation age, and ignore if too old */
int obs_age=now-n->observations[i].time_ms;
WHYF("tallying obs: %dms old, %dms long",
if (0) WHYF("tallying obs: %dms old, %dms long",
obs_age,interval);
if (obs_age>200000) continue;