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)


Top ↑

Return Return

(void)


Top ↑

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() );
			}
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.





Permalink: