我一直在使用Thin来运行我的ruby Sinatra应用程序,但我现在正在切换到Puma。 Thin创建了我自己使用的日志log/thin.log
。我注意到Puma没有生成日志文件(不是我能看到的)。我已经尝试使用谷歌搜索文档,但没有找到任何东西。
我想知道是否/如何在Puma中指定日志路径。
非常感谢任何帮助。
亚历
答案 0 :(得分:13)
如图所示:
# Redirect STDOUT and STDERR to files specified. The 3rd parameter
# (“append”) specifies whether the output is appended, the default is “false”.
stdout_redirect '/u/apps/lolcat/log/stdout', '/u/apps/lolcat/log/stderr'
stdout_redirect '/u/apps/lolcat/log/stdout', '/u/apps/lolcat/log/stderr', true