views:

25

answers:

1

My problem is is that paperclip saves the attachments appropriately, and I assume imagemagick is doing something right. With no errors returning, the images never finish processing.

Does anyone know a way to see what's backgrounding? Or specifically a way to review imagemagick's processes?

A: 

tail -f log/delayed_job.log for "backgrounding" And imagemagick's processes can be seen in your regular production log. tail -f log/production.log

Trip