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

Unified Diff: runtime/bin/builtin.dart

Issue 540253002: Remove last _logResolution reference. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/builtin.dart
diff --git a/runtime/bin/builtin.dart b/runtime/bin/builtin.dart
index 6ef1f2b2861f8d8f7d64f196e2ec7028c05fa0d0..ced34baeb5eb728efb9b34fd675f31a90633ca54 100644
--- a/runtime/bin/builtin.dart
+++ b/runtime/bin/builtin.dart
@@ -307,7 +307,9 @@ Uri _createUri(String userUri) {
default:
// Only handling file, http, and package URIs
// in standalone binary.
- _logResolution('# Unknown scheme (${uri.scheme}) in $uri.');
+ if (_logBuiltin) {
+ _print('# Unknown scheme (${uri.scheme}) in $uri.');
+ }
throw 'Not a known scheme: $uri';
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698