For debug tracing, list the cards before and after udevice replacements.

This commit is contained in:
Brian Taylor 2022-05-08 14:35:13 -07:00 committed by Holger Vogt
parent de2dc6f1d5
commit 93d067775f
1 changed files with 2 additions and 1 deletions

View File

@ -8287,6 +8287,7 @@ static void rem_double_braces(struct card* newcard)
}
#ifdef INTEGRATE_UDEVICES
/* #define TRACE */
#ifdef TRACE
static void list_the_cards(struct card *startcard, char *prefix)
{
@ -8519,7 +8520,7 @@ static struct card *pspice_compat(struct card *oldcard)
#endif
ucard = u_instances(newcard);
#ifdef TRACE
list_the_cards(oldcard, "After udevices");
list_the_cards(newcard, "After udevices");
#endif
}
#endif