uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
.
/
.
/
vendor
/
craftcms
/
.
/
cms
/
src
/
log
/
Dispatcher.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\log; use Craft; use craft\helpers\App; use Illuminate\Support\Collection; use Psr\Log\LogLevel; /** * Class Dispatcher * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 3.6.0 */ class Dispatcher extends \yii\log\Dispatcher { /** @since 4.0.0 */ public const TARGET_WEB = 'web'; /** @since 4.0.0 */ public const TARGET_CONSOLE = 'console'; /** @since 4.0.0 */ public const TARGET_QUEUE = 'queue'; /** * @var array Config to pass to each MonologTarget * @since 4.0.0 */ public array $monologTargetConfig = []; /** * @inheritdoc */ public function init(): void { parent::init(); $this->targets = array_merge($this->getTargets(), $this->targets); } /** * @return MonologTarget[] */ public function getTargets(): array { // Warning - Don't do anything that could cause something to get logged from here! // If the dispatcher is configured with flushInterval => 1, it could cause a PHP error if any log // targets haven’t been instantiated yet. $isConsoleRequest = Craft::$app->getRequest()->getIsConsoleRequest(); // Only log console requests and web requests that aren't getAuthTimeout requests if (!$isConsoleRequest && !Craft::$app->getUser()->enableSession) { return []; } $targets = Collection::make([ static::TARGET_WEB, static::TARGET_CONSOLE, static::TARGET_QUEUE, ])->mapWithKeys(function($name) { $allowLineBreaks = (bool) (App::env('CRAFT_LOG_ALLOW_LINE_BREAKS') ?? App::devMode()); $config = [ 'class' => MonologTarget::class, ] + $this->monologTargetConfig + [ 'name' => $name, 'enabled' => false, 'extractExceptionTrace' => !App::devMode(), 'allowLineBreaks' => $allowLineBreaks, 'level' => App::devMode() ? LogLevel::INFO : LogLevel::WARNING, 'logContext' => !Craft::$app->getRequest()->getIsConsoleRequest(), ]; $target = Craft::createObject($config); return [$name => $target]; }); // Queue is enabled via QueueLogBehavior if ($isConsoleRequest) { $targets->get(static::TARGET_CONSOLE)->enabled = true; } else { $targets->get(static::TARGET_WEB)->enabled = true; } return $targets->all(); } }
/srv/users/craft4/apps/craft4-newsite-space/././vendor/craftcms/./cms/src/log/Dispatcher.php