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

Unified Diff: runtime/bin/vmservice/client/lib/src/observatory/application.dart

Issue 148153007: Add Google Charts to Observatory and use it in allocation profiler (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 side-by-side diff with in-line comments
Download patch
Index: runtime/bin/vmservice/client/lib/src/observatory/application.dart
diff --git a/runtime/bin/vmservice/client/lib/src/observatory/application.dart b/runtime/bin/vmservice/client/lib/src/observatory/application.dart
index 108c65178e3206815b6fb8ed281dc6ee61e5d39c..166189288b3eb4fb82ee3afcda17154d789e2619 100644
--- a/runtime/bin/vmservice/client/lib/src/observatory/application.dart
+++ b/runtime/bin/vmservice/client/lib/src/observatory/application.dart
@@ -32,10 +32,6 @@ class ObservatoryApplication extends Observable {
requestManager = new HttpRequestManager(),
isolateManager = new IsolateManager() {
_setup();
- Logger.root.level = Level.INFO;
- Logger.root.onRecord.listen((LogRecord rec) {
- print('${rec.level.name}: ${rec.time}: ${rec.message}');
- });
}
/// Return the [Isolate] with [id].
@@ -67,6 +63,6 @@ class ObservatoryApplication extends Observable {
}
static String timeUnits(double x) {
- return x.toStringAsFixed(4);
+ return x.toStringAsFixed(2);
}
}
« no previous file with comments | « runtime/bin/vmservice/client/lib/observatory.dart ('k') | runtime/bin/vmservice/client/lib/src/observatory/chart.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698