bludit/kernel/helpers/log.class.php

10 lines
140 B
PHP
Raw Normal View History

2015-05-05 03:00:01 +02:00
<?php defined('BLUDIT') or die('Bludit CMS.');
class Log {
public static function set($text, $type=0)
{
error_log($text, $type);
}
}