Skip to content

Commit 35ba7a5

Browse files
When something goes really wrong then we want to see the entire error message (which is truncated to 1024 characters by default)
1 parent 7bf93db commit 35ba7a5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797

9898
env:
9999
PHP_EXTENSIONS: dom, json, libxml, mbstring, pdo_sqlite, soap, xml, xmlwriter
100-
PHP_INI_VALUES: assert.exception=1, zend.assertions=1, error_reporting=-1, display_errors=On
100+
PHP_INI_VALUES: assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On
101101

102102
strategy:
103103
fail-fast: false
@@ -186,7 +186,7 @@ jobs:
186186
php-version: ${{ matrix.php-version }}
187187
coverage: pcov
188188
extensions: dom, json, libxml, mbstring, pdo_sqlite, soap, xml, xmlwriter
189-
ini-values: assert.exception=1, zend.assertions=1, error_reporting=-1, display_errors=On
189+
ini-values: assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On
190190

191191
- name: Determine composer cache directory
192192
run: echo "COMPOSER_CACHE_DIR=$(./tools/composer config cache-dir)" >> $GITHUB_ENV
@@ -238,7 +238,7 @@ jobs:
238238
php-version: ${{ matrix.php-version }}
239239
coverage: pcov
240240
extensions: dom, json, libxml, mbstring, pdo_sqlite, soap, xml, xmlwriter
241-
ini-values: assert.exception=1, zend.assertions=1, error_reporting=-1, display_errors=On
241+
ini-values: assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On
242242

243243
- name: Determine composer cache directory
244244
run: echo "COMPOSER_CACHE_DIR=$(tools/composer config cache-dir)" >> $GITHUB_ENV

0 commit comments

Comments
 (0)