GQLWS Logging

graph-rework-2
noah metz 2023-07-03 19:13:29 -06:00
parent fd72ad3901
commit f44752d988
1 changed files with 5 additions and 0 deletions

@ -271,6 +271,11 @@ func GQLWSHandler(ctx * GraphContext, server * GQLThread) func(http.ResponseWrit
}
res_chan := GQLWSDo(ctx, params)
if res_chan == nil {
ctx.Log.Logf("gqlws", "res_chan is nil")
} else {
ctx.Log.Logf("gqlws", "res_chan: %+v", res_chan)
}
go func(res_chan chan *graphql.Result) {
for {