使用 Thin 和 Rails 3.0 时如何在终端窗口上显示应用程序请求
我开始在开发中使用 Thin 而不是 WEBrick(Rails 版本 3.0.9)。
通过 WEBbrick,我可以在服务器运行时在终端窗口中看到列出的所有请求(以及对数据库的调用)。
我怎样才能用薄的东西得到它?当我执行thin start
时,我看到的唯一输出是:
>> Using rack adapter
>> Thin web server (v1.2.11 codename Bat-Shit Crazy)
>> Maximum connections set to 1024
>> Listening on 0.0.0.0:3000, CTRL+C to stop
I started using Thin instead of WEBrick in development (Rails version 3.0.9)
With WEBbrick, I would see all the requests listed (and calls to the database) in the terminal window while the server was running.
How do I get that with thin? When I do thin start
the only output I see is:
>> Using rack adapter
>> Thin web server (v1.2.11 codename Bat-Shit Crazy)
>> Maximum connections set to 1024
>> Listening on 0.0.0.0:3000, CTRL+C to stop
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
thin start -V
。https://github.com/macournoyer/thin/blob /master/lib/thin/runner.rb#L134
Try
thin start -V
.https://github.com/macournoyer/thin/blob/master/lib/thin/runner.rb#L134
尝试 Rails server Thin -b 0.0.0.0 -p 3000 -edevelopment
或使用捆绑包运行它
try
rails server thin -b 0.0.0.0 -p 3000 -e development
or run it with bundle