From af178541c901d41cdf5856a422fc72dec31a150e Mon Sep 17 00:00:00 2001 From: Gospodin Bodurov <gospodin@bodurov.net> Date: Tue, 21 May 2019 21:27:37 +0300 Subject: [PATCH] Add debug --- handler/handler.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/handler/handler.go b/handler/handler.go index 9683506..b60a788 100644 --- a/handler/handler.go +++ b/handler/handler.go @@ -230,6 +230,8 @@ func (s *KeyStorageServerImpl) ReserveKeyUUID(ctx context.Context, in *api.Reser func (s *KeyStorageServerImpl) GetKeyId(ctx context.Context, in *api.GetKeyIdByKeyRequest) (*api.GetKeyIdByKeyResponse, error) { auth := s.CreateAuthentication(ctx) log.Println(auth.Uuid + " " + auth.Session) + log.Println(in.PublicKey) + log.Println(in.EntityUUID) //in.PublicKey entitiesMagamentClient := keyutils.CreateEntitiesManagementClient(auth) defer entitiesMagamentClient.CloseClient() -- GitLab