-
Notifications
You must be signed in to change notification settings - Fork 137
Open
Labels
type-bugIncorrect behavior (everything from a crash to more subtle misbehavior)Incorrect behavior (everything from a crash to more subtle misbehavior)
Description
if (optionRoot['help'].valueAtCurrent() as bool) {
logInfo('dartdoc version: $dartdocVersion');
logInfo('Generate HTML documentation for Dart libraries.\n');
logInfo(optionRoot.argParser.usage);
exitCode = 0;
return null;
}
if (optionRoot['version'].valueAtCurrent() as bool) {
logInfo('dartdoc version: $dartdocVersion');
exitCode = 0;
return null;
}It seems to me that logInfo doesn't print things. Maybe we should use print instead, or maybe the default log-level changed accidentally.
Metadata
Metadata
Assignees
Labels
type-bugIncorrect behavior (everything from a crash to more subtle misbehavior)Incorrect behavior (everything from a crash to more subtle misbehavior)