| 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);
|
| }
|
| }
|
|
|