-
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<?php defined('BLUDIT') or die('Bludit CMS.');
|
||||
|
||||
class Log {
|
||||
|
||||
public static function set($text, $type=LOG_TYPE_INFO)
|
||||
{
|
||||
if (!DEBUG_MODE) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$messageType = 0;
|
||||
if (is_array($text) ) {
|
||||
error_log('------------------------', $messageType);
|
||||
error_log('Array', $messageType);
|
||||
error_log('------------------------', $messageType);
|
||||
foreach ($text as $key=>$value) {
|
||||
error_log($key.'=>'.$value, $messageType);
|
||||
}
|
||||
error_log('------------------------', $messageType);
|
||||
}
|
||||
error_log($type.' ['.BLUDIT_VERSION.'] ['.$_SERVER['REQUEST_URI'].'] '.$text, $messageType);
|
||||
|
||||
if (DEBUG_TYPE=='TRACE') {
|
||||
error_log(print_r(debug_backtrace(), true));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user