使用 Thin 和 Rails 3.0 时如何在终端窗口上显示应用程序请求

发布于 2024-11-27 15:25:58 字数 372 浏览 2 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半﹌身腐败 2024-12-04 15:25:58

尝试thin start -V
https://github.com/macournoyer/thin/blob /master/lib/thin/runner.rb#L134

opts.on_tail("-V", "--trace", "Set tracing on (log raw request/response)")

Try thin start -V.
https://github.com/macournoyer/thin/blob/master/lib/thin/runner.rb#L134

opts.on_tail("-V", "--trace", "Set tracing on (log raw request/response)")
温柔少女心 2024-12-04 15:25:58

尝试 Rails server Thin -b 0.0.0.0 -p 3000 -edevelopment

或使用捆绑包运行它

bundle exec rails server thin -b 0.0.0.0 -p 3000 -e development

try rails server thin -b 0.0.0.0 -p 3000 -e development

or run it with bundle

bundle exec rails server thin -b 0.0.0.0 -p 3000 -e development
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文