Skip to content

Commit

Permalink
Add missing key from log line (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
liranbg authored Jul 8, 2021
1 parent 319cb00 commit 3491879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/dlx/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func (h *Handler) handleRequest(res http.ResponseWriter, req *http.Request) {
res.WriteHeader(http.StatusBadRequest)
return
}
h.logger.DebugWith("Resolving service name", resourceName)
h.logger.DebugWith("Resolving service name", "resourceName", resourceName)
serviceName, err := h.resourceScaler.ResolveServiceName(scalertypes.Resource{Name: resourceName})
if err != nil {
h.logger.WarnWith("Failed resolving service name",
Expand Down

0 comments on commit 3491879

Please sign in to comment.