diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-09-11 07:25:08 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-09-11 07:25:08 +0000 |
commit | dc2a3af13378635131fabe6dcfb2e99bb50cc491 (patch) | |
tree | 3c34ed1316d805948ee633e62812d77889dbf96b /railties/environments | |
parent | e2ba2069e79336fee26bff8491f88397dc46de16 (diff) | |
download | rails-dc2a3af13378635131fabe6dcfb2e99bb50cc491.tar.gz rails-dc2a3af13378635131fabe6dcfb2e99bb50cc491.tar.bz2 rails-dc2a3af13378635131fabe6dcfb2e99bb50cc491.zip |
Dont encourage custom url options to be called with symbol #2047
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2190 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/environments')
-rw-r--r-- | railties/environments/environment.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/environments/environment.rb b/railties/environments/environment.rb index fc66d4ae44..c1da6f5482 100644 --- a/railties/environments/environment.rb +++ b/railties/environments/environment.rb @@ -14,7 +14,8 @@ Rails::Initializer.run do |config| # Add additional load paths for your own custom dirs # config.load_paths += %W( #{RAILS_ROOT}/app/services #{RAILS_ROOT}/app/services ) - # Force all environments to use the same logger level + # Force all environments to use the same logger level + # (by default production uses INFO, the others DEBUG) # config.log_level = Logger::DEBUG # See Rails::Configuration for more options |