summaryrefslogtreecommitdiffhomepage
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/llm/provider/vertexai.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/llm/provider/vertexai.go b/internal/llm/provider/vertexai.go
index 2a13a9572..328d213fe 100644
--- a/internal/llm/provider/vertexai.go
+++ b/internal/llm/provider/vertexai.go
@@ -2,9 +2,9 @@ package provider
import (
"context"
+ "log/slog"
"os"
- "github.com/opencode-ai/opencode/internal/logging"
"google.golang.org/genai"
)
@@ -22,7 +22,7 @@ func newVertexAIClient(opts providerClientOptions) VertexAIClient {
Backend: genai.BackendVertexAI,
})
if err != nil {
- logging.Error("Failed to create VertexAI client", "error", err)
+ slog.Error("Failed to create VertexAI client", "error", err)
return nil
}