bludit/bl-kernel/helpers/log.class.php

11 lines
164 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)
{
2016-02-25 02:50:27 +01:00
error_log('('.BLUDIT_VERSION.')'.$text, $type);
2015-05-05 03:00:01 +02:00
}
2015-05-31 03:06:55 +02:00
}