12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace OCP\Log;
- use Psr\Log\LoggerInterface;
- interface ILogFactory {
-
- public function get(string $type): IWriter;
-
- public function getCustomPsrLogger(string $path, string $type = 'file', string $tag = 'Nextcloud'): LoggerInterface;
- }
|