According to Dom Lachowicz <[EMAIL PROTECTED]>:
> Thomas F wrote:
> >  No DONT'T terminate the messages with \n. The UT_DEBUGMSG()
> >macro will already put a newline on things for you.  I hate
> >having all of our stuff double spaced on debug output!
> 
> You're only partially correct here:
> 
> The Unix version: fprintf(stderr,"DEBUG: %s",sBuf);
> The QNX version: fprintf(stderr,"DEBUG: %s\n",sBuf);
> The BeOS version: fprintf(stderr,"DEBUG: %s",sBuf);
> The Win32 version: OutputDebugString(sBuf);
> The Mac version: DebugStr(sBuf);

Mmm. not that good. actually DebugStr drops to the low level debugger.
macOS X uses Unix like output.

Hub

Reply via email to