Skip to content

Commit 0c338e2

Browse files
authored
Merge pull request #1038 from cakephp/traceformat
Add traceFormat option.
2 parents 58e4a9c + d0b366b commit 0c338e2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

config/app.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,14 +167,16 @@
167167
* breathing room to complete logging or error handling.
168168
* - `ignoredDeprecationPaths` - array - A list of glob-compatible file paths that deprecations
169169
* should be ignored in. Use this to ignore deprecations for plugins or parts of
170-
* your application that still emit deprecations.
170+
* your application that still emits deprecations.
171+
* - `traceFormat` - when logging errors, List of `'array'`, `'points'`, `'shortPoints'`, defaults to `shortPoints`.
171172
*/
172173
'Error' => [
173174
'errorLevel' => E_ALL,
174175
'skipLog' => [],
175176
'log' => true,
176177
'trace' => true,
177178
'ignoredDeprecationPaths' => [],
179+
'traceFormat' => null,
178180
],
179181

180182
/*

0 commit comments

Comments
 (0)