From: Derk-Jan Hartman Date: Thu, 24 Jun 2010 22:13:11 +0000 (+0000) Subject: Add a \n to the debug of the HTTP functions, so my debug log is readable. X-Git-Tag: 1.31.0-rc.0~36397 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=2f4e28d9e3b5d24f930c8382b8018ff34f5627e0;p=lhc%2Fweb%2Fwiklou.git Add a \n to the debug of the HTTP functions, so my debug log is readable. --- diff --git a/includes/HttpFunctions.php b/includes/HttpFunctions.php index 9a2a9290c5..9b5202c356 100644 --- a/includes/HttpFunctions.php +++ b/includes/HttpFunctions.php @@ -32,7 +32,7 @@ class Http { */ public static function request( $method, $url, $options = array() ) { $url = wfExpandUrl( $url ); - wfDebug( "HTTP: $method: $url" ); + wfDebug( "HTTP: $method: $url\n" ); $options['method'] = strtoupper( $method ); if ( !isset( $options['timeout'] ) ) { $options['timeout'] = 'default';