Files
pathfinder/app/main/lib/logging/UserLog.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

36 lines
655 B
PHP

<?php
/**
* Created by PhpStorm.
* User: exodu
* 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');
}
}