(options: NestApplicationContextOptions | undefined)
| 108 | } |
| 109 | |
| 110 | private applyLogger(options: NestApplicationContextOptions | undefined) { |
| 111 | if (!options || isUndefined(options.logger)) { |
| 112 | return; |
| 113 | } |
| 114 | Logger.overrideLogger(options.logger); |
| 115 | } |
| 116 | |
| 117 | private createAdapterProxy<T>(app: NestApplication, adapter: HttpServer): T { |
| 118 | return new Proxy(app, { |
no test coverage detected