Skip to content

Commit

Permalink
CIRC-2111 Remove query logging
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkurash committed Jun 20, 2024
1 parent da6086f commit 3807aba
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public CompletableFuture<Result<CirculationSetting>> getById(String id) {
}

public CompletableFuture<Result<MultipleRecords<CirculationSetting>>> findBy(String query) {
log.debug("findBy:: parameters query: {}", query);

return circulationSettingsStorageClient.getManyWithRawQueryStringParameters(query)
.thenApply(flatMapResult(response ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ void getMany(RoutingContext routingContext) {
final var circulationSettingsRepository = new CirculationSettingsRepository(clients);

final var query = routingContext.request().query();
log.info("get:: Requested circulation settings by query: {}", query);

circulationSettingsRepository.findBy(query)
.thenApply(multipleLoanRecordsResult -> multipleLoanRecordsResult.map(multipleRecords ->
Expand Down

0 comments on commit 3807aba

Please sign in to comment.