LLMS_Abstract_Processor::log( mixed $data )
Log data to the processors log when processors debugging is enabled
Parameters Parameters
- $data
-
(mixed) (Required) Data to log.
Return Return
(void)
Source Source
File: includes/abstracts/llms.abstract.processor.php
protected function log( $data ) {
if ( defined( 'LLMS_PROCESSORS_DEBUG' ) && LLMS_PROCESSORS_DEBUG ) {
llms_log( $data, 'processors' );
}
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.15.0 | Introduced. |