()
| 171 | } |
| 172 | |
| 173 | function getBuildAgeMinutes(): number | undefined { |
| 174 | if (!MACRO.BUILD_TIME) return undefined |
| 175 | const buildTime = new Date(MACRO.BUILD_TIME).getTime() |
| 176 | if (isNaN(buildTime)) return undefined |
| 177 | return Math.floor((Date.now() - buildTime) / 60000) |
| 178 | } |
| 179 | |
| 180 | export function logAPIQuery({ |
| 181 | model, |
no outgoing calls
no test coverage detected