OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library barback.transform_logger; | 5 library barback.transform_logger; |
6 | 6 |
7 import 'package:source_maps/span.dart'; | 7 import 'package:source_maps/span.dart'; |
8 | 8 |
9 import 'asset_id.dart'; | 9 import 'asset_id.dart'; |
10 import 'barback_logger.dart'; | 10 import 'log.dart'; |
11 import 'transform.dart'; | 11 import 'transform.dart'; |
12 | 12 |
13 /// Object used to report warnings and errors encountered while running a | 13 /// Object used to report warnings and errors encountered while running a |
14 /// transformer. | 14 /// transformer. |
15 class TransformLogger { | 15 class TransformLogger { |
16 final LogFunction _logFunction; | 16 final LogFunction _logFunction; |
17 | 17 |
18 TransformLogger(this._logFunction); | 18 TransformLogger(this._logFunction); |
19 | 19 |
20 /// Logs an informative message. | 20 /// Logs an informative message. |
21 /// | 21 /// |
22 /// If [asset] is provided, the log entry is associated with that asset, | 22 /// If [asset] is provided, the log entry is associated with that asset. |
23 /// otherwise it's associated with the primary input of [transformer]. | 23 /// Otherwise it's associated with the primary input of [transformer]. |
24 /// If [span] is provided, indicates the location in the input asset that | 24 /// If [span] is provided, indicates the location in the input asset that |
25 /// caused the message. | 25 /// caused the message. |
26 void info(String message, {AssetId asset, Span span}) { | 26 void info(String message, {AssetId asset, Span span}) { |
27 _logFunction(asset, LogLevel.INFO, message, span); | 27 _logFunction(asset, LogLevel.INFO, message, span); |
28 } | 28 } |
29 | 29 |
30 /// Logs a warning message. | 30 /// Logs a warning message. |
31 /// | 31 /// |
32 /// If [asset] is provided, the log entry is associated with that asset, | 32 /// If [asset] is provided, the log entry is associated with that asset. |
33 /// otherwise it's associated with the primary input of [transformer]. | 33 /// Otherwise it's associated with the primary input of [transformer]. |
34 /// If present, [span] indicates the location in the input asset that caused | 34 /// If present, [span] indicates the location in the input asset that caused |
35 /// the warning. | 35 /// the warning. |
36 void warning(String message, {AssetId asset, Span span}) { | 36 void warning(String message, {AssetId asset, Span span}) { |
37 _logFunction(asset, LogLevel.WARNING, message, span); | 37 _logFunction(asset, LogLevel.WARNING, message, span); |
38 } | 38 } |
39 | 39 |
40 /// Logs an error message. | 40 /// Logs an error message. |
41 /// | 41 /// |
42 /// If [asset] is provided, the log entry is associated with that asset, | 42 /// If [asset] is provided, the log entry is associated with that asset. |
43 /// otherwise it's associated with the primary input of [transformer]. | 43 /// Otherwise it's associated with the primary input of [transformer]. |
44 /// If present, [span] indicates the location in the input asset that caused | 44 /// If present, [span] indicates the location in the input asset that caused |
45 /// the error. | 45 /// the error. |
46 // TODO(sigmund,nweiz): clarify when an error should be logged or thrown. | 46 // TODO(sigmund,nweiz): clarify when an error should be logged or thrown. |
47 void error(String message, {AssetId asset, Span span}) { | 47 void error(String message, {AssetId asset, Span span}) { |
48 _logFunction(asset, LogLevel.ERROR, message, span); | 48 _logFunction(asset, LogLevel.ERROR, message, span); |
49 } | 49 } |
50 } | 50 } |
OLD | NEW |