2018-04-24 16:14:00 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* @copyright Copyright (c) 2018 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
|
*
|
|
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2021-06-04 15:52:51 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2018-06-06 16:40:06 -04:00
|
|
|
* @author Johannes Ernst <jernst@indiecomputing.com>
|
2018-04-24 16:14:00 -04:00
|
|
|
*
|
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2021-06-04 15:52:51 -04:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2018-04-24 16:14:00 -04:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-04-24 16:14:00 -04:00
|
|
|
*
|
|
|
|
|
*/
|
2018-04-24 20:27:43 -04:00
|
|
|
namespace OCP\Log;
|
2018-04-24 16:14:00 -04:00
|
|
|
|
2018-04-24 20:27:43 -04:00
|
|
|
use OCP\ILogger;
|
2021-02-11 10:03:11 -05:00
|
|
|
use Psr\Log\LoggerInterface;
|
2018-04-24 20:27:43 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface ILogFactory
|
|
|
|
|
*
|
|
|
|
|
* @since 14.0.0
|
|
|
|
|
*/
|
|
|
|
|
interface ILogFactory {
|
|
|
|
|
/**
|
2018-06-06 16:40:06 -04:00
|
|
|
* @param string $type - one of: file, errorlog, syslog, systemd
|
2018-04-24 20:27:43 -04:00
|
|
|
* @return IWriter
|
|
|
|
|
* @since 14.0.0
|
|
|
|
|
*/
|
|
|
|
|
public function get(string $type): IWriter;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $path
|
|
|
|
|
* @return ILogger
|
|
|
|
|
* @since 14.0.0
|
2021-02-11 10:03:11 -05:00
|
|
|
* @deprecated use \OCP\Log\ILogFactory::getCustomPsrLogger
|
|
|
|
|
* @see \OCP\Log\ILogFactory::getCustomPsrLogger
|
2018-04-24 20:27:43 -04:00
|
|
|
*/
|
|
|
|
|
public function getCustomLogger(string $path): ILogger;
|
2021-02-11 10:03:11 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $path
|
2022-01-19 10:15:14 -05:00
|
|
|
* @param string $type
|
|
|
|
|
* @param string $tag
|
2021-02-11 10:03:11 -05:00
|
|
|
* @return LoggerInterface
|
2022-01-19 10:15:14 -05:00
|
|
|
* @since 22.0.0 - Parameters $type and $tag were added in 24.0.0
|
2021-02-11 10:03:11 -05:00
|
|
|
*/
|
2022-01-19 10:15:14 -05:00
|
|
|
public function getCustomPsrLogger(string $path, string $type = 'file', string $tag = 'Nextcloud'): LoggerInterface;
|
2018-04-24 16:14:00 -04:00
|
|
|
}
|