Skip to content

Commit

Permalink
bug fix sur getLogger qui causait une récursivité infinie
Browse files Browse the repository at this point in the history
  • Loading branch information
chouchou59 committed May 26, 2023
1 parent bab9cdf commit b777598
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ public WebClient webClient() {

@Override
public Logger getLogger() {
return this.getLogger();
return log;
}
}

0 comments on commit b777598

Please sign in to comment.