Changes between Version 10 and Version 11 of AppDebugWin


Ignore:
Timestamp:
Mar 25, 2014, 3:58:38 PM (10 years ago)
Author:
romw
Comment:

Add TraceToViewport? documentation

Legend:

Unmodified
Added
Removed
Modified
  • AppDebugWin

    v10 v11  
    147147 Symbol Offset:: If the symbol file being used has private symbols stripped, then the symbol displayed may not be the correct symbol. You can use the symbol offset to lookup the correct symbol from the object file or some other tool that can map symbols to source.
    148148 File/Line Information:: Source file and line number information is not available in all symbol file formats, but       if it is there it'll be displayed. PDB files are generally the best symbol file format to use.
     149
     150=== Trace to Debugger Viewport ===
     151
     152This feature is disabled by default.
     153
     154Enabling this feature copies the various application specific trace statements into your IDE's debugger viewport or output window.
     155
     156The following regedit script demonstrates how to enable the debug message dump:
     157
     158{{{
     159Windows Registry Editor Version 5.00
     160
     161[HKEY_CURRENT_USER\Software\Space Sciences Laboratory, U.C. Berkeley\BOINC Diagnostics]
     162"TraceToViewport"=dword:00000001
     163}}}
     164To disable able the message capture use this regedit script:
     165{{{
     166Windows Registry Editor Version 5.00
     167
     168[HKEY_CURRENT_USER\Software\Space Sciences Laboratory, U.C. Berkeley\BOINC Diagnostics]
     169"TraceToViewport"=dword:00000000
     170}}}
    149171
    150172=== Debug Message Dump ===