You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnf'Application initiated request: "{method}{path} HTTP/2.0" with status code {status_code}; took {duration} milliseconds at {timestamp}'
312
+
return (
313
+
f'Fetch request "{method}{path}" failed with {status_code} at {timestamp}'
314
+
)
310
315
else:
311
-
returnf'Application initiated request: "{method}{path} HTTP/2.0" with status code {status_code}and response size {response_size}; took {duration} milliseconds at {timestamp}'
316
+
returnf'Fetch request "{method}{path}" failed with {status_code}({response_size} bytes) at {timestamp}'
312
317
caseEventType.LCP:
313
318
duration=event["data"]["payload"]["data"]["size"]
314
319
rating=event["data"]["payload"]["data"]["rating"]
315
320
returnf"Application largest contentful paint: {duration} ms and has a {rating} rating at {timestamp}"
316
321
caseEventType.HYDRATION_ERROR:
317
322
returnf"There was a hydration error on the page at {timestamp}"
0 commit comments