user1402455
user1402455

Reputation: 117

Where to find deploy log file for a ruby on rails app

Where would I find the log file for a ruby on rails application? I am using capistrano to deploy and it is not deploying.

Upvotes: 2

Views: 3626

Answers (2)

Andrew Kuklewicz
Andrew Kuklewicz

Reputation: 10701

This is somewhat of an aside, but you can record your deployments in NewRelic, which is how we keep track of when they occur:

https://newrelic.com/docs/ruby/recording-deployments-with-the-ruby-agent

Upvotes: 1

Frederick Cheung
Frederick Cheung

Reputation: 84114

Capistrano itself produces no log files - it outputs everything it is doing to the screen:

The app's log file will be in the app's log folder by default.

If using passenger then an app that fails to start will often leave information in apache/nginx's error log

Upvotes: 2

Related Questions