verbosity top-level property
详细级别选项
Implementation
final FigOption verbosity = FigOption(
name: '--verbosity',
description: 'Sets the verbosity level of the compilation',
args: [
FigArg(
name: 'verbosity-level',
suggestions: [
FigSuggestion(
name: 'all',
description: 'Show all messages',
),
FigSuggestion(
name: 'error',
description: 'Show only error messages',
),
FigSuggestion(
name: 'info',
description: 'Show error, warning, and info messages',
),
FigSuggestion(
name: 'warning',
description: 'Show only error and warning messages',
),
],
),
],
);