diff --git a/src/github/utils/config.ts b/src/github/utils/config.ts index 538c977..feb5801 100644 --- a/src/github/utils/config.ts +++ b/src/github/utils/config.ts @@ -169,7 +169,7 @@ async function download({ context, repository, owner }: { context: GitHubContext path: filePath, mediaType: { format: "raw" }, }); - console.log(`Configuration file found at ${owner}/${repository}/${filePath}. xRateLimit remaining: ${headers?.["x-ratelimit-remaining"]}`); + console.log(`Configuration file found at ${owner}/${repository}/${filePath}. xRateLimit remaining: ${headers?.["x-ratelimit-remaining"]}. Data:`, data); return data as unknown as string; // this will be a string if media format is raw } catch (err) { // In case of a missing config, do not log it as an error