LLMS_Update::log( string $msg )
Log data related to the queue
Parameters Parameters
- $msg
-
(string) (Required) message to log
Return Return
(void)
Source Source
File: includes/abstracts/abstract.llms.update.php
protected function log( $msg ) {
if ( defined( 'LLMS_BG_UPDATE_LOG' ) && LLMS_BG_UPDATE_LOG ) {
llms_log( $msg, 'updater' );
}
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |