Skip to content

Commit

Permalink
Merge pull request #184 from City-of-Helsinki/UHF-10880
Browse files Browse the repository at this point in the history
UHF-10880
  • Loading branch information
khalima authored Nov 6, 2024
2 parents 386c2ad + 5a6d423 commit b64e178
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions helfi_api_base.install
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,17 @@ function helfi_api_base_install(bool $is_syncing = FALSE) : void {
->set('browser_traces_sample_rate', 0.2)
->set('database_tracing', TRUE)
->set('twig_tracing', TRUE)
->set('log_levels', [
'emergency' => TRUE,
'alert' => TRUE,
'critical' => TRUE,
'error' => TRUE,
'warning' => FALSE,
'notice' => FALSE,
'info' => FALSE,
'debug' => FALSE,
])
->set('fatal_error_handler', TRUE)
->save();
}
}
Expand Down Expand Up @@ -200,3 +211,10 @@ function helfi_api_base_update_9020(): void {
->save();
}
}

/**
* UHF-10880: Update the Raven settings.
*/
function helfi_api_base_update_9021() : void {
helfi_api_base_install();
}

0 comments on commit b64e178

Please sign in to comment.