如何禁用雅司病中的调试检查?
当我启动雅司病(yaws -i --conf config/yaws.conf
)时,我在输出中得到这一行:
运行调试检查打开(较慢的服务器)
这取决于“-i”选项?或者我在哪里打开调试检查?配置文件中没有提及调试...
谢谢 爱德华多
When i start yaws (yaws -i --conf config/yaws.conf
) i get this line in the output:
Running with debug checks turned on (slower server)
It depends on the "-i" option? Or where did i turned on debug checks? No mention of debug in the config file...
thx
edoardo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在雅司病的最新版本(1.85 及更高版本)中,您可以简单地在命令行上传递 --nodebug 选项:
In recent versions of yaws (1.85 and later) you can simply pass the --nodebug option on the command line:
这是因为您在全局配置中的
flags
设置设置了调试位 (2)。如果在全局配置中设置了 GC_DEBUG,则将启用此功能。这些是标志:
我认为在 yaws.config 文件中,这实际上是通过在全局部分设置 debug = false 标志来取消设置的。
更新 - 调试参数是 yaws.app 文件中应用程序环境设置的一部分,因此添加类似于
real 命令行的内容应该可以工作
This will be because your
flags
setting in the global config has the debug bit (2) set. If GC_DEBUG is set in the global configuration this feature will be enabled.These are the flags:
I think that in the yaws.config file this is actually un-set by setting the debug = false flag in the global part.
Updated - the debug parameter is part of the env settings of the app in the yaws.app file, so adding something like
to the real command line should work
使用命令:“sudo yaws -i --nodebug”后,我的网站变得更快了一些。
After using command: "sudo yaws -i --nodebug", my website become a bit faster.