How i can disable the log of rails? -- Posted via http://www.ruby-forum.com/.
Bruno Malvestuto wrote:> How i can disable the log of rails?You can modify the environment.rb and specify the logging level. I don''t know all the options, but here is a sample: config.log_level = :error That will only log errors. I know :warn or :warning and :info are also available. Maybe there is a :none option! Regards, Michael -- Posted via http://www.ruby-forum.com/.