From 88608ad44a00d2a23680800d54ed03b167c09c89 Mon Sep 17 00:00:00 2001 From: itchyonion Date: Wed, 22 Mar 2023 21:26:46 -0700 Subject: [PATCH] Broker: add warning log when proxy couldn't mach with client --- broker/ipc.go | 1 + 1 file changed, 1 insertion(+) diff --git a/broker/ipc.go b/broker/ipc.go index f9984c4..a1397d8 100644 --- a/broker/ipc.go +++ b/broker/ipc.go @@ -266,6 +266,7 @@ func (i *IPC) ProxyAnswers(arg messages.Arg, response *[]byte) error { // The snowflake took too long to respond with an answer, so its client // disappeared / the snowflake is no longer recognized by the Broker. success = false + log.Printf("Warning: matching with snowflake client failed") } b, err := messages.EncodeAnswerResponse(success)