LLMS_Abstract_Notification_Processor::log( mixed $data )
Log event data to an update file when logging enabled
Parameters Parameters
- $data
-
(mixed) (Required) data to log
Return Return
(void)
Source Source
File: includes/abstracts/llms.abstract.notification.processor.php
public function log( $data ) { if ( $this->enable_logging ) { llms_log( $data, 'notifications' ); } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |