File tree 2 files changed +2
-5
lines changed 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,6 @@ class Application < Rails::Application
30
30
config . ember . variant = Rails . env . downcase . to_sym
31
31
config . assets . js_compressor = :uglifier
32
32
33
- config . logger = Logger . new ( STDOUT )
34
- config . logger . level = Logger . const_get ( ENV [ 'LOG_LEVEL' ] ? ENV [ 'LOG_LEVEL' ] . upcase : 'INFO' )
35
-
36
33
config . after_initialize do
37
34
if %w{ development test } . include? ( Rails . env )
38
35
Hirb . enable
@@ -53,5 +50,3 @@ class Application < Rails::Application
53
50
ActionView ::Base . field_error_proc = Proc . new { |html_tag , instance |
54
51
%(<span class="field_with_errors">#{ html_tag } </span>) . html_safe
55
52
}
56
-
57
- #require 'font_assets/railtie' # => loads font middleware so cloudfront can serve fonts that render in Firefox
Original file line number Diff line number Diff line change 18
18
config . assets . digest = true
19
19
config . static_cache_control = 'public, max-age=31536000'
20
20
config . host = ENV [ 'HOST_DOMAIN' ]
21
+ config . logger = Logger . new ( STDOUT )
22
+ config . logger . level = Logger . const_get ( ENV [ 'LOG_LEVEL' ] ? ENV [ 'LOG_LEVEL' ] . upcase : 'INFO' )
21
23
end
You can’t perform that action at this time.
0 commit comments