Files
thetool/lib/mvcfronk/mfLog/mfLog.php
Frank Schubert 4ea4927931 Initial commit
2021-03-29 23:04:42 +02:00

14 lines
262 B
PHP

<?php
abstract class mfLog {
protected $severity;
public function __construct() {
$this->severity=array('debug','notice','info','warn','error','crit');
}
abstract public function write($message,$severity="crit");
abstract public function init();
}