Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Unified Diff: sdk/lib/_internal/pub/bin/pub.dart

Issue 184113007: Support JSON output for pub build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Extend timeout. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub/bin/pub.dart
diff --git a/sdk/lib/_internal/pub/bin/pub.dart b/sdk/lib/_internal/pub/bin/pub.dart
index ecc8318a9c686ec9342af187b5ab2d87dceb503a..8d06b80fb5feb1ba5f0f06d31da08e66241235ff 100644
--- a/sdk/lib/_internal/pub/bin/pub.dart
+++ b/sdk/lib/_internal/pub/bin/pub.dart
@@ -88,11 +88,19 @@ void runPub(String cacheDir, ArgResults options, List<String> arguments) {
captureStackChains: captureStackChains).catchError((error, Chain chain) {
// This is basically the top-level exception handler so that we don't
// spew a stack trace on our users.
- var message;
-
- log.error(getErrorMessage(error));
+ var message = getErrorMessage(error);
+ log.error(message);
log.fine("Exception type: ${error.runtimeType}");
+ if (log.json.enabled) {
+ if (error is UsageException) {
+ // Don't print usage info in JSON output.
+ log.json.error(error.message);
+ } else {
+ log.json.error(error);
+ }
+ }
+
if (options['trace'] || !isUserFacingException(error)) {
log.error(chain.terse);
} else {
@@ -131,7 +139,7 @@ int chooseExitCode(exception) {
if (exception is HttpException || exception is HttpException ||
exception is SocketException || exception is PubHttpException) {
return exit_codes.UNAVAILABLE;
- } else if (exception is FormatException) {
+ } else if (exception is FormatException || exception is DataException) {
return exit_codes.DATA;
} else if (exception is UsageException) {
return exit_codes.USAGE;

Powered by Google App Engine
This is Rietveld 408576698