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

Unified Diff: sdk/lib/_internal/pub/lib/src/command.dart

Issue 23625002: Support loading transformer plugins from pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes. Created 7 years, 3 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/lib/src/command.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command.dart b/sdk/lib/_internal/pub/lib/src/command.dart
index 5c72d5813b5f36ba1371d55fc4afe39f7cc5d088..9689cc6e9e81e70be0933e63f025bfd71ab70f01 100644
--- a/sdk/lib/_internal/pub/lib/src/command.dart
+++ b/sdk/lib/_internal/pub/lib/src/command.dart
@@ -9,6 +9,7 @@ import 'dart:async';
import 'package:args/args.dart';
import 'package:path/path.dart' as path;
+import 'package:stack_trace/stack_trace.dart';
import 'command/cache.dart';
import 'command/deploy.dart';
@@ -90,26 +91,13 @@ abstract class PubCommand {
// spew a stack trace on our users.
var message;
- try {
- // Most exception types have a "message" property. We prefer this since
- // it skips the "Exception:", "HttpException:", etc. prefix that calling
- // toString() adds. But, alas, "message" isn't actually defined in the
- // base Exception type so there's no easy way to know if it's available
- // short of a giant pile of type tests for each known exception type.
- //
- // So just try it. If it throws, default to toString().
- message = error.message;
- } on NoSuchMethodError catch (_) {
- message = error.toString();
- }
-
- log.error(message);
+ log.error(getErrorMessage(error));
if (trace != null) {
if (options['trace'] || !isUserFacingException(error)) {
- log.error(trace);
+ log.error(new Trace.from(trace).terse);
} else {
- log.fine(trace);
+ log.fine(new Trace.from(trace).terse);
}
}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/barback/watch_sources.dart ('k') | sdk/lib/_internal/pub/lib/src/command/serve.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698