X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fdebug%2Fclass_DebugConsoleOutput.php;h=f5588458d9b72c0395cfc1648994e2a528742c45;hb=f82b24f9c7657a083cf5bc7e6b9465d24aa191ce;hp=4dd9c82666ee717a6a4735ecd9e605f122063937;hpb=0cd57c3885f00ad77fc599e53ed2f2d5e7ac267f;p=core.git diff --git a/inc/classes/main/debug/class_DebugConsoleOutput.php b/inc/classes/main/debug/class_DebugConsoleOutput.php index 4dd9c826..f5588458 100644 --- a/inc/classes/main/debug/class_DebugConsoleOutput.php +++ b/inc/classes/main/debug/class_DebugConsoleOutput.php @@ -35,7 +35,7 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output /** * Creates an instance of this class * - * @return $debugInstance The prepared debug instance + * @return $debugInstance The prepared debug instance */ public final static function createDebugConsoleOutput () { // Get a new instance @@ -48,18 +48,22 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output /** * Outputs the given data without HTML tags * - * @param $output The HTML'ed output + * @param $output The HTML'ed output * @return void */ public final function outputStream ($output) { - print(html_entity_decode(strip_tags(stripslashes($output)))); + // Prepare the output + $output = trim(html_entity_decode(strip_tags(stripslashes($output)))); + + // And print it out... + printf("%s\n", $output); } /** * Assigns a variable for output * - * @param $var The variable we shall assign - * @param $value The value to store in the variable + * @param $var The variable we shall assign + * @param $value The value to store in the variable * @return void */ public final function assignVariable ($var, $value) { @@ -76,7 +80,7 @@ class DebugConsoleOutput extends BaseFrameworkSystem implements Debugger, Output // Empty output will be silently ignored if ($outStream !== false) { $this->outputStream($outStream); - } + } // END - if } }