/
home
/
desid573
/
public_html
/
family
/
pdd
/
app
/
Vendor
/
eway
/
src
/
Rapid
/
Service
/
/home/desid573/public_html/family/pdd/app/Vendor/eway/src/Rapid/Service
mkdir
upload
Name
Size
Mode
Actions
Http/
-
0755
rm
Http.php
9996
0644
edit
dl
rm
Logger.php
4333
0644
edit
dl
rm
Edit:
/home/desid573/public_html/family/pdd/app/Vendor/eway/src/Rapid/Service/Logger.php
(4333B)
<?php namespace Eway\Rapid\Service; use Eway\Rapid\Enum\LogLevel; /** * Class Logger Service * A basic PSR-3 logger implementation, logs to PHP's error log * @see http://www.php-fig.org/psr/psr-3/ */ class Logger { /** * System is unusable. * * @param string $message * @param array $context * @return null */ public function emergency($message, array $context = array()) { self::log(LogLevel::EMERGENCY, $message, $context); } /** * Action must be taken immediately. * * Example: Entire website down, database unavailable, etc. This should * trigger the SMS alerts and wake you up. * * @param string $message * @param array $context * @return null */ public function alert($message, array $context = array()) { self::log(LogLevel::ALERT, $message, $context); } /** * Critical conditions. * * Example: Application component unavailable, unexpected exception. * * @param string $message * @param array $context * @return null */ public function critical($message, array $context = array()) { self::log(LogLevel::CRITICAL, $message, $context); } /** * Runtime errors that do not require immediate action but should typically * be logged and monitored. * * @param string $message * @param array $context * @return null */ public function error($message, array $context = array()) { self::log(LogLevel::ERROR, $message, $context); } /** * Exceptional occurrences that are not errors. * * Example: Use of deprecated APIs, poor use of an API, undesirable things * that are not necessarily wrong. * * @param string $message * @param array $context * @return null */ public function warning($message, array $context = array()) { self::log(LogLevel::WARNING, $message, $context); } /** * Normal but significant events. * * @param string $message * @param array $context * @return null */ public function notice($message, array $context = array()) { self::log(LogLevel::NOTICE, $message, $context); } /** * Interesting events. * * Example: User logs in, SQL logs. * * @param string $message * @param array $context * @return null */ public function info($message, array $context = array()) { self::log(LogLevel::INFO, $message, $context); } /** * Detailed debug information. * * @param string $message * @param array $context * @return null */ public function debug($message, array $context = array()) { self::log(LogLevel::DEBUG, $message, $context); } /** * Logs with an arbitrary level. * This logs to PHP's error log. * * @param mixed $level * @param string $message * @param array $context * @return null */ public function log($level, $message, array $context = array()) { if (!LogLevel::isValidValue($level)) { throw new \InvalidArgumentException('Invalid loge level: '.$level); } $timestamp = time(); $log = sprintf( '[%s] %s %s', date('Y-m-d H:i:s', $timestamp), strtoupper($level), self::interpolate($message, $context) ); error_log($log); } /** * Interpolates context values into the message placeholders. */ private function interpolate($message, array $context = array()) { $replaces = array(); foreach ($context as $key => $val) { if (is_bool($val)) { $val = '[bool: ' . (int) $val . ']'; } elseif (is_null($val) || is_scalar($val) || ( is_object($val) && method_exists($val, '__toString') ) ) { $val = (string) $val; } elseif (is_array($val) || is_object($val)) { $val = @json_encode($val); } else { $val = '[type: ' . gettype($val) . ']'; } $replaces['{' . $key . '}'] = $val; } return strtr($message, $replaces); } }
Save
cmd:
run