From 5f1f7ee25a1683570410b36a05fc9ae8ae6dd35c Mon Sep 17 00:00:00 2001 From: matst80 Date: Tue, 12 Nov 2024 20:33:21 +0100 Subject: [PATCH] more logs --- remote-host.go | 1 + 1 file changed, 1 insertion(+) diff --git a/remote-host.go b/remote-host.go index 88e2837..d7cfbcf 100644 --- a/remote-host.go +++ b/remote-host.go @@ -81,6 +81,7 @@ func (g *RemoteHost) GetCartMappings() ([]CartId, error) { } func (r *RemoteHost) ConfirmChange(id CartId, host string) error { + log.Printf("Confirming change %s to %s", id, host) reply, err := r.Call(RemoteGrainChanged, AckChange, []byte(fmt.Sprintf("%s;%s", id, host))) if err != nil {