使用 Apple Web Shareing 获取 Rails 开发日志
我正在使用 Passenger Pref Pane + Apple 本机 Web 共享来托管正在开发的 Rails 3 应用程序。有什么方法可以使用此配置跟踪 Rails 日志吗?
I'm using Passenger Pref Pane + Apple native web sharing to host my Rails 3 app in development. Is there any way that I can tail the rails logs using this configuration?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 Rails 日志应始终位于
/logs/.log
中,除非我遗漏了有关您的设置的信息。您在乘客 apache 配置文件中向乘客提供的环境(PrefPane 只是在此之上的 UI)将决定应用程序的环境。因此,如果您的环境是生产环境并且您的应用程序目录是~/projects/my_app
您的日志文件应该位于~/projects/my_app/logs/production.log
Your rails logs should always be in
<app>/logs/<environment, usually production>.log
, unless I'm missing something about your setup. The environment you supply to passenger in the passenger apache config file (the PrefPane is just a UI on top of this) will determine the application's environment. So if your environment is production and your app directory is~/projects/my_app
your log file should be in~/projects/my_app/logs/production.log