diff --git a/internal/api/websocket.go b/internal/api/websocket.go index be14619..8b8b36e 100644 --- a/internal/api/websocket.go +++ b/internal/api/websocket.go @@ -189,6 +189,7 @@ func (rc *rawToCodeOceanWriter) Write(p []byte) (int, error) { if rc.proxy.webSocketCtx.Err() != nil { return 0, nil } + log.Info("Passed WriteToCodeOceanCheck") err := rc.proxy.sendToClient(dto.WebSocketMessage{Type: rc.outputType, Data: string(p)}) return len(p), err }