chore: reduce noisy logs when updating timing gist (#47446)

Example noisy logs today:
https://github.com/vercel/next.js/actions/runs/4501965165/jobs/7923231538#step:6:130
This commit is contained in:
Steven 2023-03-23 14:53:05 -04:00 committed by GitHub
parent 98c831f593
commit 7d9d7dd41b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -516,9 +516,9 @@ async function main() {
if (!timingsRes.ok) {
throw new Error(`request status: ${timingsRes.status}`)
}
const result = await timingsRes.json()
console.log(
'Sent updated timings successfully',
await timingsRes.json()
`Sent updated timings successfully. API URL: "${result?.url}" HTML URL: "${result?.html_url}"`
)
} catch (err) {
console.log('Failed to update timings data', err)