(depth, opts)
| 69 | } |
| 70 | |
| 71 | [customInspectSymbol](depth, opts) { |
| 72 | if (typeof depth === 'number' && depth < 0) |
| 73 | return this; |
| 74 | |
| 75 | const obj = { |
| 76 | enabled: this.enabled, |
| 77 | categories: this.categories, |
| 78 | }; |
| 79 | return `Tracing ${format(obj)}`; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | function createTracing(options) { |