Writes to a debugging session
#include <Debug.au3>
_DebugReport ( $sData [, $bLastError = False [, $bExit = False]] )
If no _DebugSetup() have been issued the function always returns.
@error of the caller is preserved.
@extended can be set to Windows API _WinAPI_GetLastError() if $bLastError = True.
Otherwise it is preserved.
Each time _DebugReport() is called, the output is put on its own line if $bLastError = True.
#include <Debug.au3>
_DebugSetup ()
_DebugReport ("message1")
_DebugReport ("message2",True ); with last error message appended