From 65c653b896a9aa1ad6378e8291797c7454d2ee78 Mon Sep 17 00:00:00 2001 From: Noah Metz Date: Wed, 28 Jun 2023 01:31:19 -0600 Subject: [PATCH] Add more gql logging --- gql_graph.go | 1 + 1 file changed, 1 insertion(+) diff --git a/gql_graph.go b/gql_graph.go index 5ed0cd9..0edec52 100644 --- a/gql_graph.go +++ b/gql_graph.go @@ -157,6 +157,7 @@ func GQLInterfaceLockable() *graphql.Interface { if ok == false { return nil } + ctx.Log.Logf("gql", "LOCKABLE_RESOLVE: %+v", p.Value) valid_lockables, ok := p.Context.Value("valid_lockables").(map[reflect.Type]*graphql.Object) if ok == false { ctx.Log.Logf("gql", "Failed to get valid_lockables from Context")