modified 修复日志记录异常

This commit is contained in:
Zhao 2020-01-21 11:42:55 +08:00 committed by Gitee
parent 974e192c00
commit d73adc353b

View File

@ -87,7 +87,7 @@ class ApiLogTool {
*/
public static function writeLog($log, $type = 'sql', $filePath = '') {
if(!$filePath) {
$filePath = '.' . DIRECTORY_SEPARATOR . 'runtime' . DIRECTORY_SEPARATOR;
$filePath = Env::get('runtime_path') . DIRECTORY_SEPARATOR;
}
$filename = $filePath . date("Ymd") . '_' . $type . ".log";
@$handle = fopen($filename, "a+");