This commit is contained in:
2021-04-23 14:46:02 +08:00
parent 7688fdd3df
commit aacf8cd4ae
+1 -1
View File
@@ -227,7 +227,7 @@ class Response extends HttpService
if (mb_strlen($sendData) >= 134217728) {
$this->response->end('');
} else {
Snowflake::writeFile(storage('request.log'), $sendData . PHP_EOL, FILE_APPEND);
Snowflake::writeFile(storage('request.log'), $sendData . PHP_EOL. PHP_EOL, FILE_APPEND);
$this->response->end($sendData);
}
$this->response = null;