I can't seem to disable rails logging when using Mongrel. Any fix for this? Also unanswered on the Rails forum: http://www.ruby-forum.com/topic/109422#784596 Re: how can I disable the SQL logging which occurs in develo Posted by Greg Hauptmann (Guest) on 29.05.2007 21:22 You're exactly correct Isak! Thanks. The logging functionality worked as it should in webrick. Is seems screwed up in Mongrel. I'll swap to using webrick in development (and try to find out where/how to let the Mongrel team about this). Interestingly I noted that with webrick the logging doesn't come out on the console, but rather I had to open a second iTerm and tail the log file itself. Perhaps there is a "script/server webrick" setting I could use to enable logging to console if I went looking. Tks Greg
on 2009-02-20 12:53
on 2009-02-20 16:29
I've had no trouble disabling Rails logging using mongrel. In fact, I specifically do what you asked, turn off the SQL logging in development. I do it with these lines in my development.rb: ar_logger = config.logger.clone ar_logger.level = Logger::INFO ActiveRecord::Base.logger = ar_logger Works fine for me in Rails 2.1. I believe it used to work fine for me in Rails 1.x too. Using mongrel yeah, no problem. So I'm not sure what problem you're having, but I don't think it's universal to mongrel. Jonathan
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.