NodeLogsCommand constructor

NodeLogsCommand()

Creates the node-logs command.

Implementation

NodeLogsCommand() {
  _addApiOptions(argParser);
  argParser
    ..addOption('tail', defaultsTo: '200', help: 'How many lines to show.')
    ..addFlag(
      'follow',
      abbr: 'f',
      negatable: false,
      help: 'Keep printing lines as the node reports them.',
    );
}