| DebugDelphi64 is a tool to display
programmed error messages in a window.
One intention when developping DebugDelphi64
was to make the programming of error messages as simple as possible. This
target was fully achieved:
-
Just include the interface to DebugDelphi64
in the Uses-statement of your DPR-file and
-
put a WriteLn - statement where ever
you need it. This assures that you can use all the formatting features
of the WriteLn procedure.
Additionally you can classify
your error messages. Every error class can be separately switched on and
off. This guarantees that you don't need to enclose the WriteLn - statement
with {$IFDEF/$ENDIF} directives. The unwanted error messages are simply
switched off. Every error class uses a separate output channel in DebugDelphi.
A few of the other features:
-
32000 messages can simultaneously in
the message window
-
Print selected messages
-
Copy selected messages into clipboard
-
Save all messages into a file
-
Optionally add error class, date and
time to each message
|