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

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

Issue 816103002: Add InstrumentationService.logPriorityException() and use logException() in refactorings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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
Index: pkg/analysis_server/lib/driver.dart
diff --git a/pkg/analysis_server/lib/driver.dart b/pkg/analysis_server/lib/driver.dart
index e6249d57147f170605c1059080bb1cadbfdf52c9..e9465f1d283dd7926bab3308ebc5f73ddc5a48a8 100644
--- a/pkg/analysis_server/lib/driver.dart
+++ b/pkg/analysis_server/lib/driver.dart
@@ -252,7 +252,7 @@ class Driver {
Function errorFunction =
(Zone self, ZoneDelegate parent, Zone zone, dynamic exception,
StackTrace stackTrace) {
- service.logException(exception, stackTrace);
+ service.logPriorityException(exception, stackTrace);
socketServer.analysisServer.reportException(exception, stackTrace);
throw exception;
};

Powered by Google App Engine
This is Rietveld 408576698