沉默 PHP 7.4.8 服务器请求日志“已接受”、“正在关闭”

问题描述 投票:0回答:2

从 PHP 7.3 更新到 PHP 7.4.8 后,我注意到服务器已开始记录所有请求的“已接受”、“正在关闭”,有时:“已关闭但未发送请求;这可能只是一个未使用的推测性预连接” .

[Wed Aug  5 17:51:27 2020] PHP 7.4.8 Development Server (http://localhost:3000) started
[Wed Aug  5 17:51:37 2020] 127.0.0.1:37788 Accepted
[Wed Aug  5 17:51:37 2020] 127.0.0.1:37792 Accepted
[Wed Aug  5 17:51:37 2020] 127.0.0.1:37788 [200]: (null) /
[Wed Aug  5 17:51:37 2020] 127.0.0.1:37788 Closing

[Wed Aug  5 17:52:02 2020] 127.0.0.1:37808 Closed without sending a request; it was probably just an unused speculative preconnection
[Wed Aug  5 17:52:02 2020] 127.0.0.1:37808 Closing

我想知道是否有一个选项可以以“静默”模式启动服务器,其中日志仅包含信息、警告和错误。

php logging server silent php-7.4
2个回答
2
投票

如果您自己启动 PHP 服务器,请向其传递

-q
--no-header
参数(安静模式)为我解决了这个问题:

php -q -S 127.0.0.1:8080 index.php

参见:https://stackoverflow.com/a/66864545


0
投票

你找到解决办法了吗?我也遇到同样的问题了!

© www.soinside.com 2019 - 2024. All rights reserved.