Skip to content

Commit b7c3a58

Browse files
authored
fix: Remove double slash in diagnostic url debug message (#558)
1 parent 26d73a9 commit b7c3a58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/events/event-relay.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func (d *diagnosticEventEndpointDispatcher) dispatch(w http.ResponseWriter, req
126126
consumeEvents(w, req, d.loggers, func(body []byte) {
127127
// We are just operating as a reverse proxy and passing the request on verbatim to LD; we do not
128128
// need to parse the JSON.
129-
d.loggers.Debugf("Received diagnostic event to be proxied to %s/%s", d.baseURI, d.uriPath)
129+
d.loggers.Debugf("Received diagnostic event to be proxied to %s%s", d.baseURI, d.uriPath)
130130

131131
sendConfig := ldevents.EventSenderConfiguration{
132132
Client: d.httpClient,

0 commit comments

Comments
 (0)