(message)
| 230 | } |
| 231 | |
| 232 | function startupLog(message) { |
| 233 | if (shouldPromoteUserFacingLogs) { |
| 234 | logger.log({ |
| 235 | level: 'warn', |
| 236 | message, |
| 237 | displayLevel: 'startup', |
| 238 | }); |
| 239 | return; |
| 240 | } |
| 241 | |
| 242 | logger.log({ |
| 243 | level: 'info', |
| 244 | message, |
| 245 | displayLevel: 'startup', |
| 246 | }); |
| 247 | } |
| 248 | |
| 249 | function shutdownLog(message) { |
| 250 | if (shouldPromoteUserFacingLogs) { |
no outgoing calls
no test coverage detected