LLMS_Background_Updater::log( mixed $data )

Log event data to an update file when logging enabled


Parameters Parameters

$data

(mixed) (Required) Data to log.


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.background.updater.php

	public function log( $data ) {

		if ( $this->enable_logging ) {
			llms_log( $data, 'updater' );
		}

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.4.3 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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