���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/vidoe.top/proxy/stream3/src/CloudflareBypass/Util/ |
<?php namespace CloudflareBypass\Util; /** * Logging utility. * @author Kyran Rana */ class Logger { /** * Outputs log message. * * @access public * @param string $msg The message. */ public static function info( $msg ) { self::log( "INFO", $msg ); } /** * Outputs error message. * * @access public * @param string $msg The message. */ public static function error( $msg ) { self::log( "ERROR", $msg ); } /** * Outputs any type of message. * Format: [datetime] [type] -> [msg] * * @access private * @param string $type The type of message. * @param string $msg The message. */ private static function log( $type, $msg ) { echo "[" . (new \DateTime())->format("Y-m-d H:i:s") . "][$type] -> $msg\n"; } }