namespace Automattic\WooCommerce\Internal\Admin\Logging;
use Automattic\Jetpack\Constants;
use Automattic\WooCommerce\Internal\Admin\Logging\FileV2\{ File, FileController };
* LogHandlerFileV2 class.
class LogHandlerFileV2 extends WC_Log_Handler {
* Instance of the FileController class.
private $file_controller;
* Instance of the Settings class.
* LogHandlerFileV2 class.
public function __construct() {
$this->file_controller = wc_get_container()->get( FileController::class );
$this->settings = wc_get_container()->get( Settings::class );
* @param int $timestamp Log timestamp.
* @param string $level emergency|alert|critical|error|warning|notice|info|debug.
* @param string $message Log message.
* @param array $context {
* Optional. Additional information for log handlers. Any data can be added here, but there are some array
* keys that have special behavior.
* @type string $source Determines which log file to write to. Must be at least 3 characters in length.
* @type bool $backtrace True to include a backtrace that shows where the logging function got called.
* @return bool False if value was not handled and true if value was handled.
public function handle( $timestamp, $level, $message, $context ) {
$context = (array) $context;
if ( isset( $context['source'] ) && is_string( $context['source'] ) && strlen( $context['source'] ) >= 3 ) {
$source = sanitize_title( trim( $context['source'] ) );
$source = $this->determine_source();
$entry = static::format_entry( $timestamp, $level, $message, $context );
$written = $this->file_controller->write_to_file( $source, $entry, $timestamp );
$this->file_controller->invalidate_cache();
* Builds a log entry text from level, timestamp, and message.
* @param int $timestamp Log timestamp.
* @param string $level emergency|alert|critical|error|warning|notice|info|debug.
* @param string $message Log message.
* @param array $context Additional information for log handlers.
* @return string Formatted log entry.
protected static function format_entry( $timestamp, $level, $message, $context ) {
$time_string = static::format_time( $timestamp );
$level_string = strtoupper( $level );
if ( isset( $context['backtrace'] ) && true === filter_var( $context['backtrace'], FILTER_VALIDATE_BOOLEAN ) ) {
$context['backtrace'] = static::get_backtrace();
$context_for_entry = $context;
unset( $context_for_entry['source'] );
if ( ! empty( $context_for_entry ) ) {
$formatted_context = wp_json_encode( $context_for_entry, JSON_UNESCAPED_UNICODE );
$message .= stripslashes( " CONTEXT: $formatted_context" );
$entry = "$time_string $level_string $message";
// phpcs:disable WooCommerce.Commenting.CommentHooks.MissingSinceComment
/** This filter is documented in includes/abstracts/abstract-wc-log-handler.php */
'woocommerce_format_log_entry',
'timestamp' => $timestamp,
// phpcs:enable WooCommerce.Commenting.CommentHooks.MissingSinceComment
* Figures out a source string to use for a log entry based on where the log method was called from.
protected function determine_source(): string {
'mu-plugin' => trailingslashit( Constants::get_constant( 'WPMU_PLUGIN_DIR' ) ),
'plugin' => trailingslashit( Constants::get_constant( 'WP_PLUGIN_DIR' ) ),
'theme' => trailingslashit( get_theme_root() ),
$backtrace = static::get_backtrace();
foreach ( $backtrace as $frame ) {
if ( ! isset( $frame['file'] ) ) {
foreach ( $source_roots as $type => $path ) {
if ( 0 === strpos( $frame['file'], $path ) ) {
$relative_path = trim( substr( $frame['file'], strlen( $path ) ), DIRECTORY_SEPARATOR );
if ( 'mu-plugin' === $type ) {
$info = pathinfo( $relative_path );
if ( '.' === $info['dirname'] ) {
$source = "$type-" . $info['filename'];
$source = "$type-" . $info['dirname'];
$segments = explode( DIRECTORY_SEPARATOR, $relative_path );
if ( is_array( $segments ) ) {
$source = "$type-" . reset( $segments );
return sanitize_title( $source );
* Delete all logs from a specific source.
* @param string $source The source of the log entries.
* @param bool $quiet Whether to suppress the deletion message.
* @return int The number of files that were deleted.
public function clear( string $source, bool $quiet = false ): int {
$source = File::sanitize_source( $source );
$files = $this->file_controller->get_files(
if ( is_wp_error( $files ) || count( $files ) < 1 ) {
fn( $file ) => $file->get_file_id(),
$deleted = $this->file_controller->delete_files( $file_ids );
if ( $deleted > 0 && ! $quiet ) {
// translators: %1$s is a number of log files, %2$s is a slug-style name for a file.
'%1$s log file from source %2$s was deleted.',
'%1$s log files from source %2$s were deleted.',
number_format_i18n( $deleted ),
* Delete all logs older than a specified timestamp.
* @param int $timestamp All files created before this timestamp will be deleted.
* @return int The number of files that were deleted.
public function delete_logs_before_timestamp( int $timestamp = 0 ): int {
$files = $this->file_controller->get_files(
'date_filter' => 'created',
'date_end' => $timestamp,
if ( is_wp_error( $files ) ) {
function ( $file ) use ( $timestamp ) {
* Allows preventing an expired log file from being deleted.
* @param bool $delete True to delete the file.
* @param File $file The log file object.
* @param int $timestamp The expiration threshold.
$delete = apply_filters( 'woocommerce_logger_delete_expired_file', true, $file, $timestamp );
return boolval( $delete );
if ( count( $files ) < 1 ) {
fn( $file ) => $file->get_file_id(),
$deleted = $this->file_controller->delete_files( $file_ids );
$retention_days = $this->settings->get_retention_period();
// translators: %s is a number of log files.
'%s expired log file was deleted.',
'%s expired log files were deleted.',
number_format_i18n( $deleted )