Files
pathfinder/app/main/lib/logging/LogInterface.php
Mark Friedrich 1b1470c3d9 - fixed some "case-sensitive" autoloading bugs un Unix systems
- fixed a bug with backwards compability issues
- added new js/css build files for v1.3.0
2017-11-03 16:56:19 +01:00

64 lines
1.4 KiB
PHP

<?php
/**
* Created by PhpStorm.
* User: exodu
* Date: 05.08.2017
* Time: 14:10
*/
namespace lib\logging;
interface LogInterface {
public function setMessage(string $message);
public function setLevel(string $level);
public function setData(array $data): LogInterface;
public function setTempData(array $data): LogInterface;
public function addHandler(string $handlerKey, string $formatterKey = null, \stdClass $handlerParams = null): LogInterface;
public function addHandlerGroup(string $handlerKey): LogInterface;
public function getHandlerConfig(): array;
public function getHandlerParamsConfig(): array;
public function getProcessorConfig(): array;
public function getHandlerParams(string $handlerKey): array;
public function getMessage(): string;
public function getAction(): string;
public function getChannelType(): string;
public function getChannelName(): string;
public function getLevel(): string;
public function getData(): array;
public function getContext(): array;
public function getHandlerGroups(): array;
public function getGroupHash(): string;
public function hasHandlerKey(string $handlerKey): bool;
public function hasHandlerGroupKey(string $handlerKey): bool;
public function hasBuffer(): bool;
public function isGrouped(): bool;
public function removeHandlerGroups();
public function removeHandlerGroup(string $handlerKey);
}