(...args)
| 51 | const traceEventCategory = 'node,node.http'; |
| 52 | |
| 53 | function traceBegin(...args) { |
| 54 | trace(CHAR_LOWERCASE_B, traceEventCategory, ...args); |
| 55 | } |
| 56 | |
| 57 | function traceEnd(...args) { |
| 58 | trace(CHAR_LOWERCASE_E, traceEventCategory, ...args); |
no test coverage detected
searching dependent graphs…