- new map change log to Slack channel - new "rally point" logging to Slack channel - new "rally point" poke options (e.g. custom message), closed #295 - new log options for WebSocket installations - added ship "mass" logging (backend only), #313 - added map logging to Slack, #326 - added "ESI error rate" limit detection - added "Monolog" as new logging library (Composer dependency) - added "Swiftmailer" as new eMail library (Composer dependency) - added Support for Redis session hander (performance boost) - improved character select panels (visible "online" status) - improved "activity logging" (more DB columns added to check) - improved eMail logging (HTML template support) - improved "delete map" now become "inactive" for some days before delete - improved character logout handling - improved /setup page for DB bootstrap (new button for DB create if not exists) - fixed broken ship tracking (ship name re-added) - fixed broken ship tracking for multiple chars on different browser tabs - fixed broken cursor coordinates, closed #518 - fixed null pointer "charactermodel.php->isActive():925" closed #529 - fixed broken "scroll offset", closed #533 closed #534 - Updated "validation" library JS v0.10.1 -> v0.11.9 - Updated ORM Mapper _Cortex_ v1.5.0-dev -> v1.5.0 - and many more....
64 lines
1.4 KiB
PHP
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);
|
|
|
|
} |