Also update dart_to_js_script_rewriter dependency to ^1.0.1, and change most angular2.dart imports to be core.dart instead. The pipes example broke without the angular2.dart import, so I let it be. The server-communication sample has never worked for me, so I changed it but might have broken it further. closes #1007
17 lines
386 B
Dart
17 lines
386 B
Dart
// #docregion
|
|
import 'dart:html';
|
|
|
|
import 'package:angular2/core.dart';
|
|
|
|
/// A service for logging messages of various types.
|
|
///
|
|
/// We could switch this implementation to use package:logging.
|
|
@Injectable()
|
|
class Logger {
|
|
void log(Object msg) => window.console.log(msg);
|
|
|
|
void error(Object msg) => window.console.error(msg);
|
|
|
|
void warn(Object msg) => window.console.warn(msg);
|
|
}
|