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. |