From bb73655327b97dba6f4e3c66baaedc7858612455 Mon Sep 17 00:00:00 2001 From: McMatts Date: Mon, 4 Mar 2019 19:00:15 +0000 Subject: [PATCH] Write to stderr when onboarding shared space fails --- domain/space/endpoint.go | 1 + 1 file changed, 1 insertion(+) diff --git a/domain/space/endpoint.go b/domain/space/endpoint.go index 63330e83..0d87bdf4 100644 --- a/domain/space/endpoint.go +++ b/domain/space/endpoint.go @@ -820,6 +820,7 @@ func (h *Handler) AcceptInvitation(w http.ResponseWriter, r *http.Request) { if len(model.Serial) == 0 || len(model.Firstname) == 0 || len(model.Lastname) == 0 || len(model.Password) == 0 { response.WriteMissingDataError(w, method, "Serial, Firstname, Lastname, Password") + h.Runtime.Log.Error(method, err) return }