reasonableframework/system/logger.php

34 lines
708 B
PHP
Raw Normal View History

<?php
/**
* @file logger.php
* @date 2018-05-27
* @author Go Namhyeon <gnh1201@gmail.com>
2018-05-26 17:35:32 +00:00
* @brief Logger module for ReasonableFramework
*/
if(!function_exists("write_visit_log")) {
function write_visit_log() {
2018-09-28 06:38:18 +00:00
$fw = false;
if(loadHelper("networktool")) {
$data = "\r\n" . json_encode(get_network_event());
$fw = write_storage_file($data, array(
"storage_type" => "logs",
2018-09-29 21:18:28 +00:00
"filename" => "network.log",
2018-09-28 06:38:18 +00:00
"mode" => "a"
));
}
return $fw;
}
2018-09-29 21:14:51 +00:00
if(!function_exists("write_common_log")) {
function write_common_log($msg) {
$msg = "\r\n" . $msg;
return write_storage_file($msg, array(
"storage_type" => "logs",
"filename" => "common.log",
"mode" => "a",
));
}
}