facile-it/psalm-psr-log-plugin

Psalm plugin for psr/log (PSR-3)

0.1.2 2023-04-07 15:32 UTC

This package is auto-updated.

Last update: 2024-04-07 17:33:54 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

A Psalm plugin to check psr/log (PSR-3) usage.

Features

  • Suppress ImplicitToStringCast psalm errors when objects with a __toString() method are used as message
  • Checks that all placeholders used in a message string are in the context array

Example

This plugin checks for missing context keys for placeholders:

/** @var Psr\Log\LoggerInterface $logger */

$logger->info('User {username} logged in at {datetime}', [
    'username' => 'user-username',
]);

Psalm Error Screenshot

Usage

Include the plugin in your psalm.xml config file.

<psalm>
    <plugins>
        <pluginClass class="Facile\Psalm\PsrLogPlugin\Plugin"/>
    </plugins>
</psalm>

Required keys

if you want to always require keys in context, you can configure the plugin with the requiredKey:

<psalm>
    <plugins>
        <pluginClass class="Facile\Psalm\PsrLogPlugin\Plugin">
            <requiredKey>requestId</requiredKey>
            <requiredKey>environment</requiredKey>
        </pluginClass>
    </plugins>
</psalm>

Ignored keys

if you want to ignore requirement for some key in context, you can configure the plugin with the ignoredKey.

This is useful when you have your logger that automatically injects it.

<psalm>
    <plugins>
        <pluginClass class="Facile\Psalm\PsrLogPlugin\Plugin">
            <ignoredKey>requestId</ignoredKey>
        </pluginClass>
    </plugins>
</psalm>