Skip to content

Commit

Permalink
add log message
Browse files Browse the repository at this point in the history
  • Loading branch information
bielaski committed Aug 1, 2023
1 parent c48c0b7 commit 10a5f31
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/resolvers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,12 @@ resolver.define('project/import', async (req): Promise<ResolverResponse> => {
context: { cloudId },
} = req;

console.log({
message: 'Begin importing repos',
count: projectsReadyToImport.length,
cloudId,
});

try {
await importProjects(cloudId, projectsReadyToImport, groupId);
return {
Expand Down

0 comments on commit 10a5f31

Please sign in to comment.