- Debug info should be encapsulated.

This commit is contained in:
ccremers 2004-08-18 20:22:55 +00:00
parent 85ac32fbd1
commit c929fa6ea3

View File

@ -852,11 +852,16 @@ compute_role_variables (const System sys, Protocol p, Role r)
roledef_iterate_events (r->roledef, process_event); roledef_iterate_events (r->roledef, process_event);
r->variables = tl; r->variables = tl;
eprintf ("All variables for role "); #ifdef DEBUG
termPrint (r->nameterm); if (DEBUGL (5))
eprintf (" are "); {
termlistPrint (tl); eprintf ("All variables for role ");
eprintf ("\n"); termPrint (r->nameterm);
eprintf (" are ");
termlistPrint (tl);
eprintf ("\n");
}
#endif
} }
} }