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

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

Issue 48993007: Revise barback logging patch. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 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 | « pkg/barback/lib/src/transform.dart ('k') | pkg/barback/lib/src/transform_node.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 d046460888b0e93300b8ca786852f340c9d524ef..6067b36a172610ee2904b9a215c83d458de4c586 100644
--- a/pkg/barback/lib/src/transform_logger.dart
+++ b/pkg/barback/lib/src/transform_logger.dart
@@ -7,7 +7,7 @@ library barback.transform_logger;
import 'package:source_maps/span.dart';
import 'asset_id.dart';
-import 'barback_logger.dart';
+import 'log.dart';
import 'transform.dart';
/// Object used to report warnings and errors encountered while running a
@@ -19,8 +19,8 @@ class TransformLogger {
/// Logs an informative message.
///
- /// If [asset] is provided, the log entry is associated with that asset,
- /// otherwise it's associated with the primary input of [transformer].
+ /// 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 info(String message, {AssetId asset, Span span}) {
@@ -29,8 +29,8 @@ class TransformLogger {
/// Logs a warning message.
///
- /// If [asset] is provided, the log entry is associated with that asset,
- /// otherwise it's associated with the primary input of [transformer].
+ /// If [asset] is provided, the log entry is associated with that asset.
+ /// Otherwise it's associated with the primary input of [transformer].
/// If present, [span] indicates the location in the input asset that caused
/// the warning.
void warning(String message, {AssetId asset, Span span}) {
@@ -39,8 +39,8 @@ class TransformLogger {
/// Logs an error message.
///
- /// If [asset] is provided, the log entry is associated with that asset,
- /// otherwise it's associated with the primary input of [transformer].
+ /// If [asset] is provided, the log entry is associated with that asset.
+ /// Otherwise it's associated with the primary input of [transformer].
/// If present, [span] indicates the location in the input asset that caused
/// the error.
// TODO(sigmund,nweiz): clarify when an error should be logged or thrown.
« no previous file with comments | « pkg/barback/lib/src/transform.dart ('k') | pkg/barback/lib/src/transform_node.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698