Skip to content

Commit

Permalink
removed the error logging. was not needed.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidparry committed Sep 8, 2024
1 parent 9a713c9 commit f1c5805
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,8 @@ public void performTask() {
builder.project(this.project);
OpenAiChatModel.OpenAiChatModelBuilder chatModelBuilder = OpenAiChatModel.builder();
if (apiKey.isPresent()) {
getLogger().error("before API Key is present {}", apiKey.isPresent());
builder.apiKey(apiKey.get());
chatModelBuilder.apiKey(apiKey.get());
getLogger().error("API Key is present {}", apiKey.isPresent());
}
if (wanDBApiKey.isPresent()) {
builder.wanDBApiKey(wanDBApiKey.get());
Expand Down

0 comments on commit f1c5805

Please sign in to comment.