Go: Change "Unable" to "Failed" for consistency

This commit is contained in:
Michael B. Gale
2025-04-25 15:42:29 +01:00
parent 5172a4d6ec
commit 91a794433a

View File

@@ -65,7 +65,7 @@ func getEnvVars() []string {
f, err := os.CreateTemp("", "codeql-proxy.crt")
if err != nil {
slog.Error("Unable to create temporary file for the proxy certificate", slog.String("error", err.Error()))
slog.Error("Failed to create temporary file for the proxy certificate", slog.String("error", err.Error()))
}
_, err = f.WriteString(proxy_cert)