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

Unified Diff: runtime/observatory/tests/service/get_stack_rpc_test.dart

Issue 1132113002: Rename 'dart:debugger' to 'dart:developer' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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/observatory/tests/service/get_stack_rpc_test.dart
diff --git a/runtime/observatory/tests/service/get_stack_rpc_test.dart b/runtime/observatory/tests/service/get_stack_rpc_test.dart
index 550a3da9915f98193454b1a5d17d5803fa5d1d6c..7c253aa29db0ee853f92f41ae3549eb24458fd70 100644
--- a/runtime/observatory/tests/service/get_stack_rpc_test.dart
+++ b/runtime/observatory/tests/service/get_stack_rpc_test.dart
@@ -8,7 +8,7 @@ import 'package:unittest/unittest.dart';
import 'test_helper.dart';
import 'dart:async';
import 'dart:isolate' as isolate;
-import 'dart:debugger' as debugger;
+import 'dart:developer' as developer;
int counter = 0;
const stoppedAtLine = 23;
@@ -19,7 +19,7 @@ void msgHandler(_) { }
void periodicTask(_) {
port.sendPort.send(34);
- debugger.Debugger.breakHere(); // We will be at a breakpoint at the next line.
+ developer.debugger(msg: "foo", when: true); // We will be at the next line.
counter++;
if (counter % 300 == 0) {
print('counter = $counter');

Powered by Google App Engine
This is Rietveld 408576698