Skip to content

Commit

Permalink
feat(cli): include cotar metadata in info output
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha committed Mar 13, 2022
1 parent 102017b commit 9c2ed7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class CotarInfo extends Command {
logger.info({ fileName: args.inputFile }, 'Cotar:Load');

const index = await this.loadIndex(args.inputFile, args.indexFile);
logger.info({ fileName: args.inputFile, indexFile: args.indexFile }, 'Cotar:Loaded');
logger.info({ fileName: args.inputFile, indexFile: args.indexFile, metadata: index.metadata }, 'Cotar:Loaded');

const fd = await fs.open(args.inputFile, 'r');
const fileCount = await TarReader.validate(fd, index, logger);
Expand Down

0 comments on commit 9c2ed7e

Please sign in to comment.