> Subject: Re: [opendx-dev] instance numbers in dxui
>
> How do you turn on the DXDebug instances in the executive? For
> example, there is code called similar to DXDebug("X","error");
>
> David

david - look at the Trace() module.  if you want to enable all DXDebug()
messages which have an "X" as their first arg, add a 'Trace("X", 1)'  module
to your net.  i don't think you need to connect it to anything - it's marked
as a "side effect" module in the .mdf file so it will be run by the exec w/o
having to be connected anyplace.

you can enable multiple chars at once - e.g. if i remember right most of
the memory routines use DXDebug("M", "blah blah"), so you could do:
Trace("XM", 1); to enable both kinds.     set the second parm to 0 to shut
them up.

nancy
[EMAIL PROTECTED]

Reply via email to