diff --git a/src/action.js b/src/action.js index 9f737318..f1d16637 100644 --- a/src/action.js +++ b/src/action.js @@ -196,6 +196,7 @@ async function sync(inputs) { const getSubmissions = async (maxRetries, retryCount = 0) => { try { const response = await axios.get('https://leetcode.com/api/submissions/', config); + log(`Successfully fetched submission from LeetCode, offset ${offset}`); return response; } catch (exception) { if (retryCount >= maxRetries) {