John Forbes
John Forbes

Reputation: 145

Heroku Rails Application Level Not Logging

I have a rails app on Heroku that is not logging at the application level.

Current versions:

In the config/environment/production.rb there are the following lines:

    config.logger = Logger.new(STDOUT)
    config.log_level = :info

What am I missing? What else should I look for?

Upvotes: 2

Views: 3015

Answers (1)

overlox
overlox

Reputation: 822

How about "heroku logs --source app" ? full details here : https://devcenter.heroku.com/articles/logging#types-of-logs

Upvotes: 1

Related Questions