diff --git a/internal/server/rpc/rpc_gateway_servlet_handlers.go b/internal/server/rpc/rpc_gateway_servlet_handlers.go index a8f1a95..c0cba44 100644 --- a/internal/server/rpc/rpc_gateway_servlet_handlers.go +++ b/internal/server/rpc/rpc_gateway_servlet_handlers.go @@ -5,6 +5,7 @@ import ( "github.com/valyala/fasthttp" + "git.loafle.net/commons_go/logging" cRPC "git.loafle.net/commons_go/rpc" "git.loafle.net/commons_go/rpc/protocol/json" crsrwf "git.loafle.net/commons_go/rpc/server/rwc/websocket/fasthttp" @@ -79,6 +80,7 @@ func (sh *RPCGatewayServletHandlers) Handle(soc cwf.Socket, stopChan <-chan stru rpcDoneChan := make(chan error, 1) if err = rpcServlet.Start(soc.Context(), soc, rpcDoneChan); nil != err { + logging.Logger().Errorf("Gateway Websocket: %v", err) return }