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.