bludit/kernel/helpers/log.class.php

11 lines
141 B
PHP
Raw Normal View History

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