Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SLT-954: example how to disable PHP error output #460

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions drupal/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ php:

# Set whether Drupal errors are displayed.
# This is a useful override for development environments.
# Set to "hide" for Production environment.
errorLevel: "verbose"

# PHP settings
Expand All @@ -366,6 +367,8 @@ php:
# Custom php settings block. May override parameters previously defined.
# Note: include correct php ini section, i.e. "[PHP]" or "[Date]".
extraConfig: |
# Uncomment next line to disable error verbosity for PHP completely
# display_errors = off

# Define the location of the Drupal config files relative to the composer root.
# This variable is exposed as $DRUPAL_CONFIG_PATH in the container.
Expand Down
Loading