###User Defined Function###
_DebugOut

###Description###
Displays output on a debugging session started by _DebugSetup()

###Syntax###
#include <Debug.au3>
_DebugOut ( $sOutput [, $bActivate] )


###Parameters###
@@ParamTable@@
$sOutput
	The string (or other printable value) to be output to the debugging session.
$bActivate
	[optional] Ignored, kept for backward compatibility.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	1 (see remarks).
Failure:	0 and sets the @error flag to non-zero.
@error:	1 - $sOutput is an incompatible type.
	3 - <a href="_DebugSetup.htm">_DebugSetup()</a> did not run properly.
@@End@@


###Remarks###
@error and @extended of the caller are preserved.

Each time <a href="_DebugOut.htm">_DebugOut()</a> is called, the output is put on its own line.


###Related###
_DebugSetup


###Example###
@@IncludeExample@@
