Skip to content

Commit

Permalink
fix: only print parsed args
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Jun 16, 2019
1 parent ffe7692 commit 4a124eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Expand Up @@ -64,7 +64,7 @@ export async function main(argv: Array<string>): Promise<number> {

const logger = createLogger(config.data.logger);
logger.info(VERSION_INFO, 'version info');
logger.info({ args }, 'main arguments');
logger.info({ args: args.argv }, 'main arguments');

// const schema = new Schema();
const result = { errors: [], valid: true }; // schema.match(config);
Expand Down

0 comments on commit 4a124eb

Please sign in to comment.