Files
pathfinder/app/main/lib/logging/UserLog.php
Mark Friedrich a33615445e - new "_NPC faction_" added for k-space systems, closed #773
- improved file structure for _Model_ classes (`app/main/model/..`). Group by database name
- improved database connection handling (fixed persistent DB connections)
2019-04-12 21:34:29 +02:00

36 lines
659 B
PHP

<?php
/**
* Created by PhpStorm.
* User: Exodus 4D
* Date: 07.10.2017
* Time: 14:15
*/
namespace lib\logging;
class UserLog extends AbstractChannelLog {
/**
* List of possible handlers (tested)
* -> final handler will be set dynamic for per instance
* @var array
*/
protected $handlerConfig = [
// 'mail' => 'html'
];
/**
* @var string
*/
protected $channelType = 'user';
public function __construct(string $action, array $objectData){
parent::__construct($action, $objectData);
$this->setLevel('notice');
$this->setTag('information');
}
}