File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,9 @@ property take precedence over `--trace-deprecation` and
183
183
<!-- YAML
184
184
added: v0.5.3
185
185
changes:
186
+ - version: REPLACEME
187
+ pr-url: https://github.com/nodejs/node/pull/REPLACEME
188
+ description: The `%o` specifier's `depth` has default depth of 4 again.
186
189
- version: v11.0.0
187
190
pr-url: https://github.com/nodejs/node/pull/17907
188
191
description: The `%o` specifier's `depth` option will now fall back to the
Original file line number Diff line number Diff line change @@ -117,7 +117,8 @@ function formatWithOptions(inspectOptions, f) {
117
117
{
118
118
const opts = Object . assign ( { } , inspectOptions , {
119
119
showHidden : true ,
120
- showProxy : true
120
+ showProxy : true ,
121
+ depth : 4
121
122
} ) ;
122
123
tempStr = inspect ( arguments [ a ++ ] , opts ) ;
123
124
break ;
You can’t perform that action at this time.
0 commit comments