Add github api logging

This commit is contained in:
Sam Becker 2025-02-07 19:17:22 -06:00
parent b6d5c5994d
commit 0e2f1eb5e1

View File

@ -93,6 +93,7 @@ const getGitHubCommitsBehindFromCommit = async (params?: RepoParams) => {
FETCH_CONFIG,
);
const data = await response.json();
console.log('getGitHubCommitsBehindFromCommit', data);
return data.behind_by as number;
};