This is the API docs for LemonStand V1, which has been discontinued. LemonStand is now a cloud based platform, available at lemonstand.com.

LemonStand API

traceLog function

Defined in /init/custom_helpers.php, lines 66-70
Author LemonStand eCommerce Inc.
void function traceLog(mixed $message, mixed $listener='INFO')
$message mixed a message to write.
$listener mixed the trace log listener. The default listener writes to logs/info.txt file.
Writes a message to the trace log file. The message can be either string or any other PHP type - array, object, etc. The default location of the trace log file is logs/info.txt. Example:
  traceLog('Hello!'); // Writes a string to the log file.