From 9d33f69b87de055e7438637651492702b59690a0 Mon Sep 17 00:00:00 2001 From: HD Moore Date: Sat, 24 Mar 2007 23:28:46 +0000 Subject: [PATCH] Reduce the default logging to warn git-svn-id: file:///home/svn/framework3/trunk@4560 4d416f70-5f16-0410-b530-b9f4589650da --- data/msfweb/config/environment.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/data/msfweb/config/environment.rb b/data/msfweb/config/environment.rb index c88febea57..e8d3090c83 100644 --- a/data/msfweb/config/environment.rb +++ b/data/msfweb/config/environment.rb @@ -1,3 +1,4 @@ +# Force the application into production mode ENV['RAILS_ENV'] = 'production' @@ -8,7 +9,8 @@ RAILS_GEM_VERSION = '1.2.2' unless defined? RAILS_GEM_VERSION require File.join(File.dirname(__FILE__), 'boot') Rails::Initializer.run do |config| - + config.log_level = :warn + config.active_record.allow_concurrency = true end