Skip to content

Commit

Permalink
Merge pull request #54 from atlassian-labs/no-issue/add-import-count-log
Browse files Browse the repository at this point in the history
add log message
  • Loading branch information
kbielaski authored Aug 2, 2023
2 parents c48c0b7 + 65884cd commit eebaa97
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 projects',
count: projectsReadyToImport.length,
cloudId,
});

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

0 comments on commit eebaa97

Please sign in to comment.