Make wfWarn name the caller in Http::get
authorNiklas Laxström <niklas.laxstrom@gmail.com>
Thu, 26 Mar 2015 10:44:18 +0000 (11:44 +0100)
committerNikerabbit <niklas.laxstrom@gmail.com>
Thu, 26 Mar 2015 10:46:10 +0000 (10:46 +0000)
The warning is useless as of now, unless you have stracktraces.

Bug: T91764
Change-Id: I8fcae49f3943ab2f6d13519c5f8d370ed147b185

includes/HttpFunctions.php

index 36e06b5..8e05f59 100644 (file)
@@ -96,7 +96,7 @@ class Http {
                if ( isset( $args[1] ) && ( is_string( $args[1] ) || is_numeric( $args[1] ) ) ) {
                        // Second was used to be the timeout
                        // And third parameter used to be $options
-                       wfWarn( "Second parameter should not be a timeout." );
+                       wfWarn( "Second parameter should not be a timeout.", 2 );
                        $options = isset( $args[2] ) && is_array( $args[2] ) ?
                                $args[2] : array();
                        $options['timeout'] = $args[1];