Warning: This method has been deprecated. Engagement debug logging is removed. Use llms_log() directly instead.
LLMS_Engagements::log( mixed $log )
Log debug data to the WordPress debug.log file
Parameters Parameters
- $log
-
(mixed) (Required) Data to write to the log.
Return Return
(void)
Source Source
File: includes/class.llms.engagements.php
public function log( $log ) { _deprecated_function( 'LLMS_Engagements::log()', '6.0.0', 'llms_log()' ); if ( $this->debug ) { llms_log( $log, 'engagements' ); } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Engagement debug logging is removed. Use llms_log() directly instead. |
3.12.0 | Unknown. |
2.7.9 | Introduced. |