This repository was archived by the owner on Apr 4, 2024. It is now read-only.
File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 35
35
config . active_storage . service = :local
36
36
37
37
# Use the lowest log level to ensure availability of diagnostic information when problems arise.
38
- config . log_level = : debug
38
+ config . log_level = ENV . fetch ( "CRT_LOG_LEVEL" , " debug" ) . to_sym
39
39
40
40
config . action_mailer . perform_caching = false
41
41
Original file line number Diff line number Diff line change 31
31
config . active_storage . service = :local
32
32
33
33
# Use the lowest log level to ensure availability of diagnostic information when problems arise.
34
- config . log_level = :debug
34
+ config . log_level = ENV . fetch ( "CRT_LOG_LEVEL" , "info" ) . to_sym
35
35
36
36
config . action_mailer . perform_caching = false
37
37
Original file line number Diff line number Diff line change 31
31
config . active_storage . service = :local
32
32
33
33
# Use the lowest log level to ensure availability of diagnostic information when problems arise.
34
- config . log_level = :debug
34
+ config . log_level = ENV . fetch ( 'CRT_LOG_LEVEL' , 'info' ) . to_sym
35
35
36
36
config . action_mailer . perform_caching = false
37
37
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: '3'
2
2
3
3
services :
4
4
crt-app :
5
- image : registry.lts.harvard.edu/lts/crt-app:1.4.5
5
+ image : registry.lts.harvard.edu/lts/crt-app:1.4.6
6
6
build :
7
7
context : ./
8
8
dockerfile : DockerfilePub
You can’t perform that action at this time.
0 commit comments