From 0e2f81db6adf035c4a4e936afdb37809b9368dbe Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 13 Jan 2024 15:26:51 +0100 Subject: [PATCH] fix: Remove exception --- src/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.go b/src/main.go index 87975fd..01a5313 100644 --- a/src/main.go +++ b/src/main.go @@ -217,7 +217,7 @@ func process_resp(req REQ, conn net.Conn) { if data != "" { req.RespLength = int32(len([]byte(data)) + 1) - } else if req.CommandID != 10 { + } else { log.Printf("No handler available for command: %d\n", req.CommandID) }