Skip to content

Commit

Permalink
fix FILE constant to __FILE__
Browse files Browse the repository at this point in the history
  • Loading branch information
jordiwes authored Jul 19, 2016
1 parent e110f6e commit 7e2f161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ToolkitApi/Toolkit.php
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ public function ExecuteProgram($inputXml, $disconnect = false)

// if debug mode, log control key, and input XML.
if ($this->isDebug()) {
$this->debugLog("\nExec start: " . date("Y-m-d H:i:s") . "\nVersion of toolkit front end: " . self::getFrontEndVersion() ."\nToolkit class: '" . FILE . "'\nIPC: '" . $this->getInternalKey() . "'. Control key: $controlKeyString\nHost URL: $url\nExpected output size (plugSize): $plugSize or $outByteSize bytes\nInput XML: $inputXml\n");
$this->debugLog("\nExec start: " . date("Y-m-d H:i:s") . "\nVersion of toolkit front end: " . self::getFrontEndVersion() ."\nToolkit class: '" . __FILE__ . "'\nIPC: '" . $this->getInternalKey() . "'. Control key: $controlKeyString\nHost URL: $url\nExpected output size (plugSize): $plugSize or $outByteSize bytes\nInput XML: $inputXml\n");
$this->execStartTime = microtime(true);
}

Expand Down

0 comments on commit 7e2f161

Please sign in to comment.