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

Unified Diff: lib/src/messages.dart

Issue 11275029: Support for specifying an output directory (issue #106) (Closed) Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: Created 8 years, 2 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
« no previous file with comments | « lib/src/info.dart ('k') | lib/src/options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/messages.dart
diff --git a/lib/src/messages.dart b/lib/src/messages.dart
index 9b3b77b362b1eac2ae91b112b569eae4b09468ae..e5a716461a64d4f24a193098a433be1dd2b0c317 100644
--- a/lib/src/messages.dart
+++ b/lib/src/messages.dart
@@ -4,8 +4,8 @@
library messages;
-import 'package:html5lib/dom_parsing.dart';
-import 'package:logging/logging.dart';
+import 'package:html5lib/dom_parsing.dart' show SourceSpan;
+import 'package:logging/logging.dart' show Level;
import 'file_system/path.dart';
import 'options.dart';
@@ -42,7 +42,7 @@ class Message {
var output = new StringBuffer();
bool colors = useColors && _ERROR_COLORS.containsKey(level);
if (colors) output.add(_ERROR_COLORS[level]);
- output.add(level.name);
+ output.add(level.name).add(' ');
if (colors) output.add(NO_COLOR);
if (span == null) {
« no previous file with comments | « lib/src/info.dart ('k') | lib/src/options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698