Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

Permalink
remove time tracking logs
Browse files Browse the repository at this point in the history
  • Loading branch information
skjindal93 committed Feb 21, 2024
1 parent a700ec7 commit 151d11b
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,6 @@ public EntityFetcherResponse getEntities(

LOG.debug("Sending Query to Query Service ======== \n {}", queryRequest);

long startTimeMillis = System.currentTimeMillis();
System.out.println("QS Query fired at " + startTimeMillis);

Iterator<ResultSetChunk> resultSetChunkIterator =
queryServiceClient.executeQuery(requestContext, queryRequest);

Expand Down Expand Up @@ -183,9 +180,6 @@ public EntityFetcherResponse getEntities(
}
}

long endTimeMillis = System.currentTimeMillis();
System.out.println("QS Query finished at " + endTimeMillis);
System.out.println("QS Time " + (endTimeMillis - startTimeMillis));
return new EntityFetcherResponse(entityBuilders);
}

Expand Down

0 comments on commit 151d11b

Please sign in to comment.