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

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 1c491ea14dbe9a7778156d3064fde3f450d375fa..87017f9d7d96eafaf37b39ad2a1ba25197ccad6a 100644
--- a/runtime/bin/vmservice/client/lib/src/observatory/application.dart
+++ b/runtime/bin/vmservice/client/lib/src/observatory/application.dart
@@ -31,10 +31,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].
@@ -66,6 +62,6 @@ class ObservatoryApplication extends Observable {
}
static String timeUnits(double x) {
- return x.toStringAsFixed(4);
+ return x.toStringAsFixed(2);
}
}

Powered by Google App Engine
This is Rietveld 408576698