| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 analysis.logger; | 5 library analysis.logger; |
| 6 | 6 |
| 7 import 'package:analyzer/src/generated/engine.dart'; | 7 import 'package:analyzer/src/generated/engine.dart'; |
| 8 import 'package:logging/logging.dart' as logging; | 8 import 'package:logging/logging.dart' as logging; |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 @override | 35 @override |
| 36 void logInformation(String message) { | 36 void logInformation(String message) { |
| 37 baseLogger.info(message); | 37 baseLogger.info(message); |
| 38 } | 38 } |
| 39 | 39 |
| 40 @override | 40 @override |
| 41 void logInformation2(String message, Exception exception) { | 41 void logInformation2(String message, Exception exception) { |
| 42 baseLogger.info(message, exception); | 42 baseLogger.info(message, exception); |
| 43 } | 43 } |
| 44 |
| 45 @override |
| 46 void logInformation3(String message, Exception exception) { |
| 47 baseLogger.info(message, exception); |
| 48 } |
| 44 } | 49 } |
| OLD | NEW |