tfaber@svn.reactos.org wrote:
DbgPrint(DbgString);
OutputDebugStringA(DbgString);
FYI, we had OutputDebugStringA there in the first place, but I changed it to DbgPrint in r40147. IIRC, output from DbgPrint was directly sent to the debug port while OutputDebugStringA buffers the data first. This is especially bad, when a test crashes the OS and we lose several kilobytes of log data before they are printed out.
Probably, a DbgPrint("%s", DbgString) is the better alternative here.
- Colin