# double-opt-in/5.5.0/logger/logger.interface.php

Double Opt-In for Contact Form 7 – Secure, GDPR-Compliant Email Verification, version 5.5.0. 19 lines.

- Page: https://pluginprobe.com/plugins/double-opt-in/5.5.0/code/logger/logger.interface.php
- Raw: https://pluginprobe.com/plugins/double-opt-in/5.5.0/raw/logger/logger.interface.php
- Modified: 2025-09-23T13:34:24+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/double-opt-in/5.5.0/code/logger/logger.interface.php#L10-L20`.

```php
<?php

namespace Forge12\Shared;

if ( ! interface_exists( 'Forge12\Shared\LoggerInterface' ) ) {
	interface LoggerInterface {
		public function debug( string $message, array $context = [] ): void;

		public function info( string $message, array $context = [] ): void;

		public function error( string $message, array $context = [] ): void;

		public function critical( string $message, array $context = [] ): void;

		public function warning( string $message, array $context = [] ): void;

		public function notice( string $message, array $context = [] ): void; // Füge diese Zeile hinzu
	}
}
```
