You appear to be a bot. Output may be restricted
Description
Writes the elapsed lifetime of the logger to the debug log, with an optional message.
Usage
Jetpack_Sitemap_Logger::time( $message );
Parameters
- $message
- ( string ) optional – The optional message string. Default is the empty string.
Returns
void
Source
File name: jetpack/modules/sitemaps/sitemap-logger.php
Lines:
1 to 4 of 4
public function time( $message = '' ) { $time = round( microtime( true ) - $this->starttime, 3 ); $this->report( $message . ' ' . $time . ' seconds elapsed.' ); }