You are here

function nusoap_base::debug in Salesforce Suite 5.2

Same name in this branch
  1. 5.2 includes/nusoap.php \nusoap_base::debug()
  2. 5.2 includes/nusoap.orig.php \nusoap_base::debug()
Same name and namespace in other branches
  1. 5 includes/nusoap.php \nusoap_base::debug()
  2. 5 includes/nusoap.orig.php \nusoap_base::debug()

* adds debug data to the instance debug string with formatting * *

Parameters

string $string debug data: * @access private

4 calls to nusoap_base::debug()
nusoap_base::serializeEnvelope in includes/nusoap.php
serializes a message
nusoap_base::serializeEnvelope in includes/nusoap.orig.php
serializes a message
nusoap_base::serialize_val in includes/nusoap.php
* serializes PHP values in accordance w/ section 5. Type information is * not serialized if $use == 'literal'. * * @access public
nusoap_base::serialize_val in includes/nusoap.orig.php
* serializes PHP values in accordance w/ section 5. Type information is * not serialized if $use == 'literal'. * * @access public

File

includes/nusoap.php, line 253

Class

nusoap_base
nusoap_base

Code

function debug($string) {
  if ($this->debugLevel > 0) {
    $this
      ->appendDebug($this
      ->getmicrotime() . ' ' . get_class($this) . ": {$string}\n");
  }
}