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