From 2f4e28d9e3b5d24f930c8382b8018ff34f5627e0 Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Thu, 24 Jun 2010 22:13:11 +0000 Subject: [PATCH] Add a \n to the debug of the HTTP functions, so my debug log is readable. --- includes/HttpFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'; -- 2.20.1