|
|
@@ -44,16 +44,18 @@ class MySoapClient extends SoapClient
|
|
|
*/
|
|
|
public function __soapCall($function_name, array $arguments, array $options = null, $input_headers = null, array &$output_headers = null)
|
|
|
{
|
|
|
+ //todo logg
|
|
|
+ $result = parent::__soapCall($function_name, $arguments, $options, $input_headers, $output_headers);
|
|
|
+
|
|
|
logModuleCall(
|
|
|
'zimbraEmail',
|
|
|
__FUNCTION__,
|
|
|
$function_name,
|
|
|
"Debug10",
|
|
|
- $arguments
|
|
|
+ $result
|
|
|
);
|
|
|
|
|
|
- //todo logg
|
|
|
- return parent::__soapCall($function_name, $arguments, $options, $input_headers, $output_headers); // TODO: Change the autogenerated stub
|
|
|
+ return $result;
|
|
|
}
|
|
|
|
|
|
|