TwistPHP Documentation

log

File path: dist/twist/Core/Models/Debug.model.php
Namespace: Twist\Core\Models
Extends:

logLog some debug data into the debug array, the debug data is shown on the debug window.

Parameters

Name Type Description
$strSystemstringn/a
$strTypestringn/a
$mxdDatamixedn/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strSystem 'foo';
$strType 'foo';
$mxdData 'foo-123';

//Call the function log with the example vars
$resDebug = new \Twist\Core\Models\Debug();
$resDebug -> log($strSystem$strType$mxdData);