From 8300f99e090f2c19e001539dbb40ccae47b3f382 Mon Sep 17 00:00:00 2001 From: jerome mouneyrac Date: Mon, 22 Feb 2010 05:30:56 +0000 Subject: [PATCH] webservice MDL-21580 remove personal log function call --- webservice/xmlrpc/locallib.php | 1 - 1 file changed, 1 deletion(-) diff --git a/webservice/xmlrpc/locallib.php b/webservice/xmlrpc/locallib.php index ddd0b21b13d..e9942d77c2a 100644 --- a/webservice/xmlrpc/locallib.php +++ b/webservice/xmlrpc/locallib.php @@ -62,7 +62,6 @@ class webservice_xmlrpc_server extends webservice_zend_server { $function = external_function_info($methodname); //retrieve the description of the method name if (is_object($function)) { //if the method is not an object (no description found), // do not make any change on the response - varlog($response); $returnvalue = $response->getReturnValue(); $returnvalue = $this->clean_returnvalue($function->returns_desc, $returnvalue); $response->setReturnValue($returnvalue);