0

我想要一个简单的记录器,就像在 Rails 中一样。只是记录所有请求及其所有参数。可以弄清楚如何做到这一点。谢谢。

4

2 回答 2

0

尝试

configure do
  enable :logging
end

http://www.sinatrarb.com/intro.html#Logging

于 2013-08-28T16:53:13.053 回答
0

找到了:

configure do
  class ::Logger; alias_method :write, :<<; end
  use Rack::CommonLogger, Logger.new('logs/app.log')
end

取自这里:customink/stoplight

于 2013-09-03T07:55:43.760 回答