Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
www
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
apimatic
/
core
/
src
/
Logger
/
Editing: ConsoleLogger.php
<?php namespace WPForms\Vendor\Core\Logger; use Closure; use WPForms\Vendor\Core\Utils\CoreHelper; use WPForms\Vendor\Psr\Log\AbstractLogger; use WPForms\Vendor\Psr\Log\InvalidArgumentException; class ConsoleLogger extends AbstractLogger { /** * A callable function that takes in a format and any number of parameters to satisfy that format. * For example: "printf", will be called like printf('%s %s', 'a', 'b') * * @var callable */ private $printer; public function __construct(callable $printer) { $this->printer = $printer; } /** * @inheritDoc */ public function log($level, $message, array $context = []) : void { if (!\in_array($level, LoggerConstants::ALLOWED_LOG_LEVELS, \true)) { throw new InvalidArgumentException("Invalid LogLevel: {$level}. See Psr\\Log\\LogLevel.php for possible values of log levels."); } Closure::fromCallable($this->printer)("%s: %s\n", $level, \str_replace(\array_map(function ($key) { return '{' . $key . '}'; }, \array_keys($context)), \array_map(function ($value) { return CoreHelper::serialize($value); }, $context), $message)); } }
Save
Cancel