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

Unified Diff: pkg/barback/lib/src/transform_logger.dart

Issue 24886002: Support dart2js in pub serve. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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: pkg/barback/lib/src/transform_logger.dart
diff --git a/pkg/barback/lib/src/transform_logger.dart b/pkg/barback/lib/src/transform_logger.dart
index 131be29e8f54d14f39e71378a23c942378ebf443..ec14b18a0ccaf50b4e660aad4c4a447649e47a5b 100644
--- a/pkg/barback/lib/src/transform_logger.dart
+++ b/pkg/barback/lib/src/transform_logger.dart
@@ -14,6 +14,14 @@ class TransformLogger {
TransformLogger(this._shouldPrint);
+ /// Logs an informative message.
+ ///
+ /// If present, [span] indicates the location in the input asset that caused
+ /// the warning.
nweiz 2013/09/27 22:21:17 "warning" -> "message"
Bob Nystrom 2013/09/28 00:56:11 Done.
+ void info(String message, [Span span]) {
+ _printMessage('info', message, span);
+ }
+
/// Logs a warning message.
///
/// If present, [span] indicates the location in the input asset that caused
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/barback.dart » ('j') | sdk/lib/_internal/pub/lib/src/barback.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698