Server IP : 162.213.251.212 / Your IP : 3.144.86.102 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/allssztx/www/jollyprecast/wp-content/plugins/image-optimization/classes/ |
Upload File : |
<?php namespace ImageOptimization\Classes; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Logger { public const LEVEL_ERROR = 'error'; public const LEVEL_WARN = 'warn'; public const LEVEL_INFO = 'info'; public static function log( string $log_level, $message ): void { $backtrace = debug_backtrace(); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_debug_backtrace $class = $backtrace[1]['class'] ?? null; $type = $backtrace[1]['type'] ?? null; $function = $backtrace[1]['function']; if ( $class ) { $message = '[Image Optimizer]: ' . $log_level . ' in ' . "$class$type$function()" . ': ' . $message; } else { $message = '[Image Optimizer]: ' . $log_level . ' in ' . "$function()" . ': ' . $message; } error_log( $message ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log } }