fix log files permission

This commit is contained in:
Namhyeon Go 2019-04-07 15:01:42 +09:00 committed by GitHub
parent 3d0fc91063
commit 4016fe37d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@ if(!check_function_exists("write_visit_log")) {
$fw = append_storage_file($data, array(
"storage_type" => "logs",
"filename" => "network.log",
"chmod" => 0644,
));
}
@ -27,6 +28,7 @@ if(!check_function_exists("write_common_log")) {
return append_storage_file($msg, array(
"storage_type" => "logs",
"filename" => "common.log",
"chmod" => 0644,
));
}
}