我正在尝试在Ruby on Rails应用程序中调试pdf生成错误的问题。我正在使用pdfkit + wkhtmltopdf-binnary宝石。由于某些问题,我在日志中收到500和此信息:
RuntimeError (command failed (exitstatus=1): /home/ubuntu/phys-track/shared/bundle/ruby/2.0.0/bin/wkhtmltopdf --quiet --page-size Letter --margin-top 0.75in --margin-right 0.75in --margin-bottom 0.75in --margin-left 0.75in --encoding UTF-8 - -):
我想知道在哪里可以找到任何日志,我可以看到有关该问题的更详细的信息。
答案 0 :(得分:0)
您可以尝试在PDFKit配置中将verbose设置为true ..例如,您可能有config / application.rb文件是这样的
require 'pdfkit'
PDFKit.configure do |config|
# other options here
config.verbose = true #to turn off --quiet mode
end
您可以参考https://github.com/pdfkit/pdfkit/blob/master/spec/pdfkit_spec.rb了解配置示例