File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1414AppConfig [ :session_expire_after_seconds ] = 28800
1515
1616AppConfig [ :frontend_log ] = "/archivesspace/logs/archivesspace.out"
17- AppConfig [ :frontend_log_level ] = " warn"
17+ AppConfig [ :frontend_log_level ] = ENV . fetch ( "LOG_LEVEL" , " warn")
1818AppConfig [ :backend_log ] = "/archivesspace/logs/archivesspace.out"
19- AppConfig [ :backend_log_level ] = " warn"
19+ AppConfig [ :backend_log_level ] = ENV . fetch ( "LOG_LEVEL" , " warn")
2020AppConfig [ :pui_log ] = "/archivesspace/logs/archivesspace.out"
21- AppConfig [ :pui_log_level ] = " warn"
21+ AppConfig [ :pui_log_level ] = ENV . fetch ( "LOG_LEVEL" , " warn")
2222AppConfig [ :indexer_log ] = "/archivesspace/logs/archivesspace.out"
23- AppConfig [ :indexer_log_level ] = " warn"
23+ AppConfig [ :indexer_log_level ] = ENV . fetch ( "LOG_LEVEL" , " warn")
2424
2525## Plug-ins to load. They will load in the order specified
2626#AppConfig[:plugins] = ['local', 'lcnaf'] (default)
You can’t perform that action at this time.
0 commit comments