LLMS_Abstract_Processor::log( mixed $data )
Log data to the processors log when processors debugging is enabled
Description Description
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. |
User Contributed Notes User Contributed Notes
Permalink: