Skip to content

Commit

Permalink
Merge pull request #57 from xenit-eu/fix-log-level
Browse files Browse the repository at this point in the history
[ACC-1448] Use debug log level
  • Loading branch information
NielsCW authored Jun 18, 2024
2 parents 0402172 + aa6765e commit adfd75d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public <TResponse> CompletableFuture<TResponse> delete(String path, Consumer<Htt
public void configure(Consumer<RestClientConfiguration> callback) {
var config = new DefaultRestClientConfiguration(
uri -> this.baseUrl = uri,
logConfig -> this.logger = new RequestLogger(logConfig, log::info)
logConfig -> this.logger = new RequestLogger(logConfig, log::debug)
);

callback.accept(config);
Expand Down

0 comments on commit adfd75d

Please sign in to comment.