diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2011-09-16 12:34:12 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2011-09-16 12:34:12 +0100 |
commit | bccd673534c8162f7b61e66491cafd62fc915019 (patch) | |
tree | 9f080201745cfd9d1ed6706000e8685fb486e1ab /app/controllers/request_controller.rb | |
parent | 4e81db9ed10bcc0c3422ef88b0ba091c77e92303 (diff) |
Improved error logging when zipfile PDF creation fails
Diffstat (limited to 'app/controllers/request_controller.rb')
-rw-r--r-- | app/controllers/request_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index a9394fe39..06d8f15f4 100644 --- a/app/controllers/request_controller.rb +++ b/app/controllers/request_controller.rb @@ -792,7 +792,7 @@ class RequestController < ApplicationController } done = true else - logger.error("Could not convert info request #{info_request.id} to PDF") + logger.error("Could not convert info request #{info_request.id} to PDF with command '#{convert_command} #{url} #{tempfile.path}'") end tempfile.close else |