# gmail-smtp/trunk/google-api-php-client/vendor/psr/log/src/AbstractLogger.php

Gmail SMTP, version trunk. 16 lines.

- Page: https://pluginprobe.com/plugins/gmail-smtp/trunk/code/google-api-php-client/vendor/psr/log/src/AbstractLogger.php
- Raw: https://pluginprobe.com/plugins/gmail-smtp/trunk/raw/google-api-php-client/vendor/psr/log/src/AbstractLogger.php
- Modified: 2026-07-04T08:00:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gmail-smtp/trunk/code/google-api-php-client/vendor/psr/log/src/AbstractLogger.php#L10-L20`.

```php
<?php

namespace Psr\Log;

/**
 * This is a simple Logger implementation that other Loggers can inherit from.
 *
 * It simply delegates all log-level-specific methods to the `log` method to
 * reduce boilerplate code that a simple Logger that does the same thing with
 * messages regardless of the error level has to implement.
 */
abstract class AbstractLogger implements LoggerInterface
{
    use LoggerTrait;
}

```
