Skip to content

Commit

Permalink
[MODORDERS-1209]. Change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
BKadirkhodjaev committed Dec 9, 2024
1 parent bf10e22 commit 46b7315
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public Future<PieceCollection> getAllPieces(String query, RequestContext request
}

public Future<PieceCollection> getAllPieces(int limit, int offset, String query, RequestContext requestContext) {
log.info("getAllPieces:: limit: {}, offset: {}, query: {}", limit, offset, query);
log.debug("getAllPieces:: limit: {}, offset: {}, query: {}", limit, offset, query);
var requestEntry = new RequestEntry(PIECE_STORAGE_ENDPOINT).withQuery(query).withOffset(offset).withLimit(limit);
return restClient.get(requestEntry, PieceCollection.class, requestContext);
}
Expand Down

0 comments on commit 46b7315

Please sign in to comment.