(message: string, ...rest: string[])
| 194 | }); |
| 195 | |
| 196 | const customLogger = (message: string, ...rest: string[]) => { |
| 197 | console.log(message, ...rest); |
| 198 | }; |
| 199 | |
| 200 | app.use('*', logger(customLogger)); |
| 201 |
nothing calls this directly
no outgoing calls
no test coverage detected