Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Side by Side Diff: pkg/analysis_server/lib/src/analysis_logger.dart

Issue 145973002: TBR - Fix the build (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698