Skip to content

Commit

Permalink
feat(seeder.service): log seeded DIDs
Browse files Browse the repository at this point in the history
Signed-off-by: jrhender <john.henderson@energyweb.org>
  • Loading branch information
jrhender committed Feb 9, 2025
1 parent 11d2f25 commit 0048623
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/vc-api/src/seeder/seeder.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export class SeederService {

for (const keyPair of keyPairFixture) {
const key = await this.keyService.importKey(keyPair);
await this.didService.registerKeyDID(key.keyId);
const seededDid = await this.didService.registerKeyDID(key.keyId);
this.logger.debug(`seeded ${seededDid?.id}`);
}

this.logger.debug('seeding database complete');
Expand Down

0 comments on commit 0048623

Please sign in to comment.