Skip to content

Commit c3665ae

Browse files
authored
Merge pull request #21 from evwilkin/chore/start-completed-logging
2 parents 31267ea + 0433056 commit c3665ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ const fetchGitHubIssues = async (owner, repo, since) => {
188188
};
189189

190190
async function syncIssues(owner, repo, since, direction = 'both') {
191-
console.log(`\n=== START Syncing issues for repo ${ owner }/${ repo } updated since ${since} (direction: ${direction}) ===\n`);
191+
console.log(`\n\n=== START Syncing issues for repo ${ owner }/${ repo } updated since ${since} (direction: ${direction}) ===\n\n`);
192192
try {
193193
// Clear any previous errors
194194
// errorCollector.clear();
@@ -273,6 +273,7 @@ async function syncIssues(owner, repo, since, direction = 'both') {
273273
console.log(`\n=== END ${repo.toUpperCase()} ERRORS ===\n`);
274274
errorCollector.clear();
275275
}
276+
console.log(`\n\n=== COMPLETED Syncing issues for repo ${ owner }/${ repo } ===\n\n`);
276277
}
277278
}
278279

0 commit comments

Comments
 (0)