Skip to content

Commit

Permalink
moving logger to trace
Browse files Browse the repository at this point in the history
  • Loading branch information
silvanheller authored and faberf committed Jun 8, 2023
1 parent 89e0fcd commit 539cdc5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public <E extends DistanceElement> List<E> getNearestNeighboursGeneric(int k, fl
return handleNearestNeighbourResponse(this.cottontail.client.query(query), distanceElementClass);
} catch (StatusRuntimeException e) {
LOGGER.warn("Error occurred during query execution in getNearestNeighboursGeneric(): {}", e.getMessage());
LOGGER.warn("Query: {}", query.getBuilder().toString());
LOGGER.trace("Query: {}", query.getBuilder().toString());
return new ArrayList<>(0);
}
}
Expand Down

0 comments on commit 539cdc5

Please sign in to comment.