FIX: Extra New Line Added to Debug Output in Visual DebuggerLast reviewed: September 16, 1997Article ID: Q107428 |
1.00
WINDOWS
kbtool kbfixlist kbbuglist
The information in this article applies to:
SYMPTOMSWhen using the Visual Workbench debugger, a new line is inserted in the debugging output window every time debugging information is output through the CDumpContext insertion operator or OutputDebugString(). This interferes with formatting done for the debug output.
CAUSEA new line is inserted by the debugger after every call to the Windows 3.1 application programming interface (API) function OutputDebugString(). In the Microsoft Foundation Classes (MFC), the insertion operator (<<) for CDumpContext eventually maps to a call to OutputDebugString(), so every invocation of << for a CDumpContext object also introduces a new line in the output window.
RESOLUTIONThe following are three suggested workarounds:
STATUSMicrosoft has confirmed this to be a bug in the products listed at the beginning of this article. This problem was corrected in Visual C++ 2.0.
MORE INFORMATIONThe following code fragment demonstrates the problem that occurs when calling OutputDebugString directly. The output that would normally appear on the same line actually displays over three lines:
Code
OutputDebugString("This"); OutputDebugString("output"); OutputDebugString("takes three lines.\n"); Output
This output takes three lines.The code fragment below demonstrates how each insertion of debugging text into the afxDump context causes a new line to appear in the output window:
void CPerson::Dump( CDumpContext &dc ) const { CObject::Dump( dc ); dc << m_name << " is "; dc << m_years << " years old.\n"; }A call to myPerson.Dump(afxDump) produces the following output in the Visual Workbench's output window:
a CObject at $18FC80 FirstName LastName is 30 years old.The following is what is desired:
a CObject at $3917477E FirstName LastName is 30 years old. |
Additional reference words: newline afxDump 1.00 1.10
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |