File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,18 +17,18 @@ type Event = log.Event
17
17
const (
18
18
// EventRequest entries contain information about HTTP requests.
19
19
// This includes information like the URL, query parameters, and headers.
20
- EventRequest = log . EventRequest
20
+ EventRequest Event = "Request"
21
21
22
22
// EventResponse entries contain information about HTTP responses.
23
23
// This includes information like the HTTP status code, headers, and request URL.
24
- EventResponse = log . EventResponse
24
+ EventResponse Event = "Response"
25
25
26
26
// EventRetryPolicy entries contain information specific to the retry policy in use.
27
- EventRetryPolicy = log . EventRetryPolicy
27
+ EventRetryPolicy Event = "Retry"
28
28
29
29
// EventLRO entries contain information specific to long-running operations.
30
- // This includes information like polling location, operation state and sleep intervals.
31
- EventLRO = log . EventLRO
30
+ // This includes information like polling location, operation state, and sleep intervals.
31
+ EventLRO Event = "LongRunningOperation"
32
32
)
33
33
34
34
// SetEvents is used to control which events are written to
You can’t perform that action at this time.
0 commit comments