LLMS_Background_Updater::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/class.llms.background.updater.php
public function log( $data ) { if ( $this->enable_logging ) { llms_log( $data, 'updater' ); } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.4.3 | Introduced. |