Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > jetpack > modules > sitemaps > >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
sitemap-buffer-factory.php | File | 1986 bytes | May 12 2025 23:04:36. | |
sitemap-buffer-fallback.php | File | 4135 bytes | September 20 2023 01:19:10. | |
sitemap-buffer-image-fallback.php | File | 2142 bytes | March 25 2024 22:39:50. | |
sitemap-buffer-image-xmlwriter.php | File | 2997 bytes | April 28 2025 19:38:34. | |
sitemap-buffer-image.php | File | 2630 bytes | June 21 2022 20:20:10. | |
sitemap-buffer-master-fallback.php | File | 1501 bytes | March 25 2024 22:39:50. | |
sitemap-buffer-master-xmlwriter.php | File | 1443 bytes | April 28 2025 19:38:34. | |
sitemap-buffer-master.php | File | 1950 bytes | June 21 2022 20:20:10. | |
sitemap-buffer-news-fallback.php | File | 2166 bytes | March 25 2024 22:39:50. | |
sitemap-buffer-news-xmlwriter.php | File | 2828 bytes | April 28 2025 19:38:34. | |
sitemap-buffer-news.php | File | 2645 bytes | June 21 2022 20:20:10. | |
sitemap-buffer-page-fallback.php | File | 2069 bytes | March 25 2024 22:39:50. | |
sitemap-buffer-page-xmlwriter.php | File | 1996 bytes | April 28 2025 19:38:34. | |
sitemap-buffer-page.php | File | 2562 bytes | June 21 2022 20:20:10. | |
sitemap-buffer-video-fallback.php | File | 2151 bytes | March 25 2024 22:39:50. | |
sitemap-buffer-video-xmlwriter.php | File | 2572 bytes | May 05 2025 21:43:40. | |
sitemap-buffer-video.php | File | 2628 bytes | June 21 2022 20:20:10. | |
sitemap-buffer-xmlwriter.php | File | 5451 bytes | April 28 2025 19:38:34. | |
sitemap-buffer.php | File | 8322 bytes | February 10 2025 18:44:16. | |
sitemap-builder.php | File | 41309 bytes | April 28 2025 19:38:34. | |
sitemap-constants.php | File | 5795 bytes | May 05 2025 21:43:40. | |
sitemap-finder.php | File | 3022 bytes | September 20 2023 01:19:10. | |
sitemap-librarian.php | File | 12737 bytes | October 07 2024 23:44:04. | |
sitemap-logger.php | File | 2592 bytes | May 12 2025 23:04:36. | |
sitemap-state.php | File | 4335 bytes | September 20 2023 01:19:10. | |
sitemap-stylist.php | File | 20977 bytes | October 24 2023 18:28:46. | |
sitemaps.php | File | 18851 bytes | April 28 2025 19:38:34. |
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName /** * A message logger for the Jetpack Sitemap module. * * @package automattic/jetpack * @since 4.8.0 */ /** * Handles logging errors and debug messages for sitemap generator. * * A Jetpack_Sitemap_Logger object keeps track of its birth time as well * as a "unique" ID string. Calling the report() method writes a message * to the PHP error log as well as the ID string for easier grepping. * * @since 4.8.0 */ class Jetpack_Sitemap_Logger { /** * A unique-ish string for each logger, enabling us to grep * for the messages written by an individual generation phase. * * @access private * @since 4.8.0 * @var string $key The key string. */ private $key; /** * The birth time of this object in microseconds. * * @access private * @since 4.8.0 * @var int $starttime The birth time. */ private $starttime; /** * Initializes a new logger object. * * @access public * @since 4.8.0 * * @param string $message An optional message string to be written to the debug log on initialization. */ public function __construct( $message = null ) { $this->key = wp_generate_password( 5, false ); $this->starttime = microtime( true ); if ( $message !== null ) { $this->report( $message ); } } /** * Writes a string to the debug log, including the logger's ID string. * * @access public * @since 4.8.0 * * @param string $message The string to be written to the log. * @param boolean $is_error If true, $message will be logged even if JETPACK_DEV_DEBUG is not enabled. */ public function report( $message, $is_error = false ) { $message = 'jp-sitemap-' . $this->key . ': ' . $message; if ( ! ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ) { return; } if ( ! $is_error && ! ( defined( 'JETPACK_DEV_DEBUG' ) && JETPACK_DEV_DEBUG ) ) { return; } // Append memory usage in MB (human readable) $usage = memory_get_usage( true ); $usage_mb = round( $usage / MB_IN_BYTES, 2 ); $message .= ' [Memory usage: ' . $usage_mb . ' MB]'; error_log( $message ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log } /** * Writes the elapsed lifetime of the logger to the debug log, with an optional message. * * @access public * @since 4.8.0 * * @param string $message The optional message string. Default is the empty string. */ public function time( $message = '' ) { $time = round( microtime( true ) - $this->starttime, 3 ); $this->report( $message . ' ' . $time . ' seconds elapsed.' ); } }
SILENT KILLER Tool