bludit/bl-kernel/helpers/log.class.php
2016-01-20 21:29:01 -03:00

11 lines
141 B
PHP

<?php defined('BLUDIT') or die('Bludit CMS.');
class Log {
public static function set($text, $type=0)
{
error_log($text, $type);
}
}