aboutsummaryrefslogtreecommitdiffstats
path: root/apps/admin_audit/lib/IAuditLogger.php
blob: f17afa6852e5b601431cab42b3d41bc838150b0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

/**
 * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCA\AdminAudit;

use Psr\Log\LoggerInterface;

/**
 * Interface for a logger that logs in the audit log file instead of the normal log file
 */
interface IAuditLogger extends LoggerInterface {
}