Minify_Cache_File::_log PHP Method

_log() protected method

Send message to the Minify logger
Deprecation: Use $this->logger
protected _log ( string $msg ) : null
$msg string
return null
    protected function _log($msg)
    {
        trigger_error(__METHOD__ . ' is deprecated in Minify 3.0.', E_USER_DEPRECATED);
        $this->logger->warning($msg);
    }