From 7311ad68ee7a7f3ff5683a138552db996ebae0c6 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Tue, 23 Aug 2005 16:53:40 +0000 Subject: [PATCH] Output tweak --- includes/Profiling.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/Profiling.php b/includes/Profiling.php index 634735cdff..605b10160d 100755 --- a/includes/Profiling.php +++ b/includes/Profiling.php @@ -78,13 +78,13 @@ class Profiler { } else { //if ($wgDebugProfiling) { if ($functionname == 'close') { - $message = "Profile section ended by close(): {$bit[0]}\n"; - wfDebug( $message ); + $message = "Profile section ended by close(): {$bit[0]}"; + wfDebug( "$message\n" ); $this->mStack[] = array( $message, 0, '0 0', 0, '0 0', 0 ); } elseif ($bit[0] != $functionname) { - $message = "Profiling error: in({$bit[0]}), out($functionname)\n"; - wfDebug( $message ); + $message = "Profiling error: in({$bit[0]}), out($functionname)"; + wfDebug( "$message\n" ); $this->mStack[] = array( $message, 0, '0 0', 0, '0 0', 0 ); } //} -- 2.20.1