| Index: pkg/barback/lib/src/log.dart
|
| diff --git a/pkg/barback/lib/src/log.dart b/pkg/barback/lib/src/log.dart
|
| index 691f4db48aef1727928162abc8b4aeef0201e1f0..f0240a41f96c3835b9d3fc69df5a95879b78d72e 100644
|
| --- a/pkg/barback/lib/src/log.dart
|
| +++ b/pkg/barback/lib/src/log.dart
|
| @@ -4,7 +4,7 @@
|
|
|
| library barback.log;
|
|
|
| -import 'package:source_maps/span.dart';
|
| +import 'package:source_span/source_span.dart';
|
|
|
| import 'asset/asset_id.dart';
|
| import 'errors.dart';
|
| @@ -34,8 +34,8 @@ class LogEntry {
|
| final String message;
|
|
|
| /// The location that the message pertains to or null if not associated with
|
| - /// a source [Span].
|
| - final Span span;
|
| + /// a [SourceSpan].
|
| + final SourceSpan span;
|
|
|
| LogEntry(this.transform, this.assetId, this.level, this.message, this.span);
|
| }
|
|
|