()
| 162 | } |
| 163 | |
| 164 | function getBuildAgeMinutes(): number | undefined { |
| 165 | if (!MACRO.BUILD_TIME) return undefined |
| 166 | const buildTime = new Date(MACRO.BUILD_TIME).getTime() |
| 167 | if (isNaN(buildTime)) return undefined |
| 168 | return Math.floor((Date.now() - buildTime) / 60000) |
| 169 | } |
| 170 | |
| 171 | export function logAPIQuery({ |
| 172 | model, |
no outgoing calls
no test coverage detected