Direct "puts" in Rails, to Apache log - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T09:07:28Z http://stackoverflow.com/feeds/question/751542 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/751542/direct-puts-in-rails-to-apache-log 0 Direct "puts" in Rails, to Apache log Paul 2009-04-15T12:51:08Z 2009-05-07T10:12:34Z <p>Hi,</p> <p>What's the configuration setting to get calls to <code>puts</code> to be written to the Apache log file? (Using Passenger to run Rails on Apache)</p> <p>Thanks</p> http://stackoverflow.com/questions/751542/direct-puts-in-rails-to-apache-log/751728#751728 3 Answer by Ben for Direct "puts" in Rails, to Apache log Ben 2009-04-15T13:37:03Z 2009-04-17T13:23:27Z <p>Why not just log to the Rails logs? You can use <code>Rails.logger</code> to write to the files in your app's log directory.</p> <p>Example:</p> <pre><code>Rails.logger.warn "Login failed for user #{@user.login}" </code></pre> <p>Rails has different logging levels built in (debug, info, warn, error, and fatal), and these can be specified in your environment file. So to set logging in production mode to debug level:</p> <pre><code>config.log_level = :debug </code></pre> http://stackoverflow.com/questions/751542/direct-puts-in-rails-to-apache-log/833829#833829 0 Answer by Fer for Direct "puts" in Rails, to Apache log Fer 2009-05-07T10:12:34Z 2009-05-07T10:12:34Z <p>I think you can "reopen" STDOUT to point to whatever RAILS_DEFAULT_LOGGER points to (your passenger log in this case).</p> <p>But I'm not sure it is a Good idea, here is why:</p> <p>Log is for things you want to know during normal function of your app, and is filtered differently according to your envioronment logger.debug() calls print to development.log but not to production.log, logger.error() goes, logically enough ,everywhere.</p> <p>STDOUT (p, puts, printf, pretty_print...) is perfect por script/console experiments and for debugger calls, see this: <a href="http://www.themomorohoax.com/2009/02/09/use-debugger" rel="nofollow" title="post">post about ruby-debug</a> for some hints on how to use "puts" or "p" to watch the values of your variable in the middle of an execution. </p> <p>I hope this can help you.</p>