Skip to content

Commit

Permalink
Remove exception from log
Browse files Browse the repository at this point in the history
  • Loading branch information
sarthakn7 committed Sep 20, 2024
1 parent 906d6ca commit 85455ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void createIndex(
try {
response = blockingStub.createIndex(requestBuilder.build());
} catch (StatusRuntimeException e) {
logger.error("Unable to create index {}", indexName, e);
logger.error("Unable to create index {}", indexName);
throw e;
}
logger.info("Server returned : " + response.getResponse());
Expand Down

0 comments on commit 85455ce

Please sign in to comment.