diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2011-06-21 10:56:55 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2011-06-21 10:56:55 +0000 |
commit | 489b6a5306f268d5c35466a82ef1184764d0f30d (patch) | |
tree | b3c7753a61e1c472438ab4bb7161f41052ba31e3 /main/redmine/additional_environment.rb | |
parent | af4306109b58e890c58fe6a6bcb5c4b98c0f6164 (diff) | |
download | aports-489b6a5306f268d5c35466a82ef1184764d0f30d.tar.bz2 aports-489b6a5306f268d5c35466a82ef1184764d0f30d.tar.xz |
aports/main: move redmine and deps to main
Diffstat (limited to 'main/redmine/additional_environment.rb')
-rw-r--r-- | main/redmine/additional_environment.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main/redmine/additional_environment.rb b/main/redmine/additional_environment.rb new file mode 100644 index 0000000000..0d37f579d6 --- /dev/null +++ b/main/redmine/additional_environment.rb @@ -0,0 +1,16 @@ +# Copy this file to additional_environment.rb and add any statements +# that need to be passed to the Rails::Initializer. `config` is +# available in this context. +# +# Example: +# +# config.log_level = :debug +# config.gem "example_plugin", :lib => false +# config.gem "timesheet_plugin", :lib => false, :version => '0.5.0' +# config.gem "aws-s3", :lib => "aws/s3" +# ... +# + +config.logger = Logger.new(config.log_path, 2, 1000000) +config.logger.level = Logger::WARN + |