77 lines
2.0 KiB
PHP
77 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* @file logger.php
|
|
* @created_on 2018-05-27
|
|
* @updated_on 2020-01-23
|
|
* @author Go Namhyeon <gnh1201@gmail.com>
|
|
* @brief Logger module for ReasonableFramework
|
|
*/
|
|
|
|
if(!is_fn("append_log_to_file")) {
|
|
function append_log_to_file($data, $filename) {
|
|
return append_storage_file($data, array(
|
|
"storage_type" => "logs",
|
|
"filename" => $filename,
|
|
"chmod" => 0644,
|
|
"nl" => "<",
|
|
));
|
|
}
|
|
}
|
|
|
|
if(!is_fn("write_visit_log")) {
|
|
function write_visit_log() {
|
|
$fw = false;
|
|
|
|
$data = "";
|
|
if(loadHelper("networktool")) {
|
|
$nevt = get_network_event();
|
|
if(loadHelper("catsplit.format")) {
|
|
$data = catsplit_encode($nevt);
|
|
} else {
|
|
$data = json_encode($nevt);
|
|
}
|
|
|
|
$fw = append_log_to_file($data, "network.log");
|
|
}
|
|
|
|
return $fw;
|
|
}
|
|
}
|
|
|
|
if(!is_fn("write_common_log")) {
|
|
function write_common_log($message, $component="None", $program="") {
|
|
$fw = false;
|
|
|
|
$mypid = get_shared_var("mypid");
|
|
$data = implode("\t", array(get_current_datetime(), $mypid, $component, $message));
|
|
$fw = append_log_to_file($data, "common.log");
|
|
|
|
// if enabled RFC3164 remote debugging
|
|
if(loadHelper("rfc3164.proto")) {
|
|
rfc3164_send_message($message, $component, $program);
|
|
}
|
|
|
|
return $fw;
|
|
}
|
|
}
|
|
|
|
if(!is_fn("write_debug_log")) {
|
|
function write_debug_log($message, $component="Debug", $program="") {
|
|
$fw = false;
|
|
|
|
// if not debug mode
|
|
if(APP_DEVELOPMENT === false) return $fw;
|
|
|
|
// if debug mode
|
|
$data = implode("\t", array(get_current_datetime(), $type, $message));
|
|
$fw = append_log_to_file($data, "debug.log");
|
|
|
|
// if enabled RFC3164 remote debugging
|
|
if(loadHelper("rfc3164.proto")) {
|
|
rfc3164_send_message($message, $component, $program);
|
|
}
|
|
|
|
return $fw;
|
|
}
|
|
}
|