diff --git a/config/autoload/error-handling.global.php b/config/autoload/error-handling.global.php index e292f18..bf31f2a 100644 --- a/config/autoload/error-handling.global.php +++ b/config/autoload/error-handling.global.php @@ -1,9 +1,22 @@ true, 'logger' => 'dot-log.default_logger', ExtraProvider::CONFIG_KEY => [ - TraceProvider::class => [ - 'enabled' => true, - 'processor' => [ - 'class' => TraceProcessor::class, - ], + CookieProvider::class => [ + 'enabled' => false, +// 'processor' => [ +// 'class' => \Dot\ErrorHandler\Extra\Processor\CookieProcessor::class, +// 'replacementStrategy' => \Dot\ErrorHandler\Extra\ReplacementStrategy::Full, +// 'sensitiveParameters' => [ +// \Dot\ErrorHandler\Extra\Processor\ProcessorInterface::ALL, +// ], +// ], + ], + HeaderProvider::class => [ + 'enabled' => false, +// 'processor' => [ +// 'class' => \Dot\ErrorHandler\Extra\Processor\HeaderProcessor::class, +// 'replacementStrategy' => \Dot\ErrorHandler\Extra\ReplacementStrategy::Full, +// 'sensitiveParameters' => [], +// ], + ], + RequestProvider::class => [ + 'enabled' => false, +// 'processor' => [ +// 'class' => \Dot\ErrorHandler\Extra\Processor\RequestProcessor::class, +// 'replacementStrategy' => \Dot\ErrorHandler\Extra\ReplacementStrategy::Full, +// 'sensitiveParameters' => [ +// 'password', +// ], +// ], + ], + ServerProvider::class => [ + 'enabled' => true, +// 'processor' => [ +// 'class' => \Dot\ErrorHandler\Extra\Processor\ServerProcessor::class, +// 'replacementStrategy' => \Dot\ErrorHandler\Extra\ReplacementStrategy::Full, +// 'sensitiveParameters' => [ +// \Dot\ErrorHandler\Extra\Processor\ProcessorInterface::ALL, +// ], +// ], + ], + SessionProvider::class => [ + 'enabled' => false, +// 'processor' => [ +// 'class' => \Dot\ErrorHandler\Extra\Processor\SessionProcessor::class, +// 'replacementStrategy' => \Dot\ErrorHandler\Extra\ReplacementStrategy::Full, +// 'sensitiveParameters' => [], +// ], + ], + TraceProvider::class => [ + 'enabled' => true, +// 'processor' => [ +// 'class' => \Dot\ErrorHandler\Extra\Processor\TraceProcessor::class, +// 'replacementStrategy' => \Dot\ErrorHandler\Extra\ReplacementStrategy::Full, +// 'sensitiveParameters' => [], +// ], ], ], ],