OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 // VMOptions=--compile_all --error_on_bad_type --error_on_bad_override |
| 5 |
| 6 import 'dart:async'; |
| 7 import 'dart:developer' as developer; |
| 8 import 'package:logging/logging.dart'; |
| 9 |
| 10 main() { |
| 11 Logger.root.level = Level.ALL; |
| 12 Logger.root.onRecord.listen((logRecord) { |
| 13 developer.log( |
| 14 sequenceNumber: logRecord.sequenceNumber, |
| 15 millisecondsSinceEpoch: logRecord.time.millisecondsSinceEpoch, |
| 16 level: logRecord.level.value, |
| 17 name: logRecord.loggerName, |
| 18 message: logRecord.message, |
| 19 zone: null, |
| 20 error: logRecord.error, |
| 21 stackTrace: logRecord.stackTrace); |
| 22 }); |
| 23 new Timer.periodic(new Duration(seconds: 1), (t) { |
| 24 Logger.root.info('INFO MESSAGE'); |
| 25 }); |
| 26 new Timer.periodic(new Duration(seconds: 1), (t) { |
| 27 Logger.root.fine('FINE MESSAGE'); |
| 28 }); |
| 29 } |
OLD | NEW |