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

Unified Diff: pkg/analysis_server/lib/src/analysis_server.dart

Issue 191003003: (TBR) Fix the build (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/domain_server.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/analysis_server.dart
diff --git a/pkg/analysis_server/lib/src/analysis_server.dart b/pkg/analysis_server/lib/src/analysis_server.dart
index aa352727d0b2d5863e126a70d49bf7bd59bfa6c0..02a4f80f27a8a653a46a2075468adb5485c75d5c 100644
--- a/pkg/analysis_server/lib/src/analysis_server.dart
+++ b/pkg/analysis_server/lib/src/analysis_server.dart
@@ -137,7 +137,7 @@ class AnalysisServer {
running = false;
} else {
new Future(performTask).catchError((exception, stackTrace) {
- AnalysisEngine.instance.logger.logError3(exception);
+ AnalysisEngine.instance.logger.logError(exception);
});
}
}
@@ -163,7 +163,7 @@ class AnalysisServer {
if (!running) {
running = true;
new Future(performTask).catchError((exception, stackTrace) {
- AnalysisEngine.instance.logger.logError3(exception);
+ AnalysisEngine.instance.logger.logError(exception);
});
}
}
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/domain_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698