From 3c743ea5f8382dddf1d34e955f5f998a66802920 Mon Sep 17 00:00:00 2001 From: Nikhil P Bonte Date: Tue, 9 Jan 2024 01:27:18 +0530 Subject: [PATCH] Logging --- .../java/org/apache/atlas/authorizer/RelationshipAuthorizer.java | 1 + 1 file changed, 1 insertion(+) diff --git a/repository/src/main/java/org/apache/atlas/authorizer/RelationshipAuthorizer.java b/repository/src/main/java/org/apache/atlas/authorizer/RelationshipAuthorizer.java index c290ccfd16..33a75c4969 100644 --- a/repository/src/main/java/org/apache/atlas/authorizer/RelationshipAuthorizer.java +++ b/repository/src/main/java/org/apache/atlas/authorizer/RelationshipAuthorizer.java @@ -382,6 +382,7 @@ public static boolean isRelationshipAccessAllowed(String action, String endOneGu RestClient restClient = getLowLevelClient(); AtlasElasticsearchQuery elasticsearchQuery = new AtlasElasticsearchQuery("janusgraph_vertex_index", restClient); Map elasticsearchResult = null; + LOG.info(dslString); elasticsearchResult = elasticsearchQuery.runQueryWithLowLevelClient(dslString); Integer count = null; if (elasticsearchResult!=null) {