We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 467d7e6 commit 6d3deeeCopy full SHA for 6d3deee
src/api-client.ts
@@ -4,6 +4,7 @@ import * as retry from "@octokit/plugin-retry";
4
import consoleLogLevel from "console-log-level";
5
6
import { getActionVersion, getRequiredInput } from "./actions-util";
7
+import { getRunnerLogger } from "./logging";
8
import { parseRepositoryNwo } from "./repository";
9
import {
10
ConfigurationError,
@@ -116,6 +117,9 @@ export async function getGitHubVersion(): Promise<GitHubVersion> {
116
117
getApiDetails(),
118
);
119
}
120
+ getRunnerLogger(true).info(JSON.stringify(cachedGitHubVersion));
121
+ getRunnerLogger(true).info(getApiDetails().url);
122
+ getRunnerLogger(true).info(getApiDetails().apiURL);
123
return cachedGitHubVersion;
124
125
0 commit comments