LLMS_Payment_Gateway::log()
Log messages if logging is enabled
Description Description
Parameters Parameters
- $data
-
(mixed) (Required) data to log (accepts any number of $data to be logged)
Return Return
(void)
Source Source
File: includes/abstracts/abstract.llms.payment.gateway.php
public function log() { if ( 'yes' === $this->get_logging_enabled() ) { foreach ( func_get_args() as $data ) { llms_log( $data, $this->get_id() ); } } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: