Skip to content

Commit

Permalink
improve cli debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dmihalcik-virtru committed Feb 14, 2025
1 parent 9b16e7d commit 0a3ee3f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cli/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ async function parseCreateZTDFOptions(argv: Partial<mainArgs>): Promise<CreateZT
throw new CLIError('CRITICAL', 'Invalid mimeType format');
}
}
log('DEBUG', `CreateZTDFOptions: ${JSON.stringify(c)}`);
return c;
}

Expand All @@ -300,6 +301,7 @@ async function parseCreateNanoTDFOptions(argv: Partial<mainArgs>): Promise<Creat
}
// NOTE autoconfigure is not yet supported in nanotdf
delete c.autoconfigure;
log('DEBUG', `CreateNanoTDFOptions: ${JSON.stringify(c)}`);
return c;
}

Expand Down

0 comments on commit 0a3ee3f

Please sign in to comment.