WC_Log_Handler_File::write_cached_logs()publicWC 1.0

Write cached logs.

Method of the class: WC_Log_Handler_File{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Log_Handler_File = new WC_Log_Handler_File();
$WC_Log_Handler_File->write_cached_logs();

WC_Log_Handler_File::write_cached_logs() code WC 8.7.0

public function write_cached_logs() {
	foreach ( $this->cached_logs as $log ) {
		$this->add( $log['entry'], $log['handle'] );
	}
}