chore: allow vmodule switch for debugging

This commit is contained in:
deepak1556 2021-03-27 19:26:24 -07:00
parent f453ed8e38
commit c0fa3dfd3e
2 changed files with 2 additions and 0 deletions

View file

@ -98,4 +98,5 @@ export interface NativeParsedArgs {
'ignore-certificate-errors'?: boolean; 'ignore-certificate-errors'?: boolean;
'allow-insecure-localhost'?: boolean; 'allow-insecure-localhost'?: boolean;
'log-net-log'?: string; 'log-net-log'?: string;
'vmodule'?: string;
} }

View file

@ -132,6 +132,7 @@ export const OPTIONS: OptionDescriptions<Required<NativeParsedArgs>> = {
'ignore-certificate-errors': { type: 'boolean' }, 'ignore-certificate-errors': { type: 'boolean' },
'allow-insecure-localhost': { type: 'boolean' }, 'allow-insecure-localhost': { type: 'boolean' },
'log-net-log': { type: 'string' }, 'log-net-log': { type: 'string' },
'vmodule': { type: 'string' },
'_urls': { type: 'string[]' }, '_urls': { type: 'string[]' },
_: { type: 'string[]' } // main arguments _: { type: 'string[]' } // main arguments