ostark / craft-mute-deprecations
Mutes deprecation logs in production
Installs: 35
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- craftcms/cms: ^3.0.0
This package is auto-updated.
Last update: 2024-11-07 01:08:37 UTC
README
When migrating a site from Craft 2 to Craft 3, you will notice things changed in the templates. Twig tags got renamed and variable access is slightly different - they old way is usually still supported, but is marked as "deprecated".
This extension prevents Craft from logging deprecation errors if 'devMode' => false
in config/general.php
.
It speeds up your site by reducing overhead of tracing the code and logging to the database.
Notice: Do not simply mute deprecation errors, remove them as soon as possible.
Why?
The benefits of this package are very limited. It is rather an example of how to use a Yii extension with Craft instead of a Plugin.
With this extra
option in the composer.json
you hook into Yii's bootstrapping process:
"extra": {
"bootstrap": "ostark\\MuteDeprecations\\Bootstrap"
}
In the Bootstrap class, you learn how to access the Craft::$app
instance, to use services and to swap out a Craft core component from the container.
Links
- https://www.yiiframework.com/doc/guide/2.0/en/structure-extensions
- https://docs.craftcms.com/v3/plugin-intro.html
Install
Require the package:
composer require ostark/craft-mute-deprecations