Technical References

Logs and Debugging
October 2007 11
5. Click Start > Run.
6. In the Open field, type drwtsn32.exe -i and click OK.
You will see the confirmation dialog displayed in Figure 2.
Figure 2. Dr. Watson confirmation dialog.
7. Clic k OK to close the dialog box.
Dr. Watson is now set as your default debugger.
Log Message Formats
The following are the formats used by the various log and debug file messages. Each
format is followed by an example.
C++ and Java *.log file messages
<timestamp> <level> <error code> <error text>
2007-02-28 09:29:11.723 INFO ABCD1234 Successfully launched update.
C++ *.dbg file messages
<timestamp> [<thread ID>] <level> <text>
2007-02-28 14:51:13.723 DEBUG [0xaa8] CSqmcApiBase::_doRecovery:
Connected to QM Controller.
Java *.dbg file messages
<timestamp> <level> [<thread name>] <class:line> <text>
2007-04-07 15:40:31.954 STACK [Th2] Init#:run:113 ClaimException…
Java (log4j) *.log file messages
<timestamp> [<thread name>] <level> [LINE-<number>] [<class:method>]
<text>
2007-04-07 14:54:00,067 [Th2] INFO [LINE-1534] [Init:un] Started.