# sync-basalam/trunk/includes/Logger/LoggerInterface.php

ووسلام – همگام سازی ووکامرس و باسلام, version trunk. 21 lines.

- Page: https://pluginprobe.com/plugins/sync-basalam/trunk/code/includes/Logger/LoggerInterface.php
- Raw: https://pluginprobe.com/plugins/sync-basalam/trunk/raw/includes/Logger/LoggerInterface.php
- Modified: 2025-12-23T16:52:54+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/sync-basalam/trunk/code/includes/Logger/LoggerInterface.php#L10-L20`.

```php
<?php

namespace SyncBasalam\Logger;

defined('ABSPATH') || exit;

interface LoggerInterface
{
    public function log($level, $message, $context = []);

    public function debug($message, $context);

    public function info($message, $context);

    public function warning($message, $context);

    public function error($message, $context);

    public function alert($message, $context);
}

```
