| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/wordpress-seo/src/loggers/ |
Upload File : |
<?php
/**
* Empty migration logger.
*
* @package Yoast\YoastSEO
*/
namespace Yoast\WP\Free\Loggers;
use YoastSEO_Vendor\Ruckusing_Util_Logger;
/**
* Logger to make sure the output is not written into a file.
*/
class Migration_Logger extends Ruckusing_Util_Logger {
/**
* Creates an instance of Ruckusing_Util_Logger
*
* @codeCoverageIgnore
*/
public function __construct() {
// Intentionally left empty.
}
/**
* Logs a message
*
* @codeCoverageIgnore
*
* @param string $msg Message to log.
*
* @return void
*/
public function log( $msg ) {
Logger::get_logger()->info( $msg );
}
/**
* Close the log file handler
*
* @codeCoverageIgnore
*
* @return void
*/
public function close() {
}
}