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

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

Issue 166333003: Add support for a "fine" barback log level. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 bdac90f9a48633dd2405d736537a3ec45459359b..c3e5c73fa64c8602ccde0b63016a0d27854976e7 100644
--- a/pkg/barback/lib/src/transform_logger.dart
+++ b/pkg/barback/lib/src/transform_logger.dart
@@ -29,6 +29,17 @@ class TransformLogger {
_logFunction(asset, LogLevel.INFO, message, span);
}
+ /// Logs a message that won't be displayed unless the user is running in
+ /// verbose mode.
+ ///
+ /// If [asset] is provided, the log entry is associated with that asset.
+ /// Otherwise it's associated with the primary input of [transformer].
+ /// If [span] is provided, indicates the location in the input asset that
+ /// caused the message.
+ void fine(String message, {AssetId asset, Span span}) {
+ _logFunction(asset, LogLevel.FINE, message, span);
+ }
+
/// Logs a warning message.
///
/// If [asset] is provided, the log entry is associated with that asset.

Powered by Google App Engine
This is Rietveld 408576698