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

Unified Diff: utils/pub/system_cache.dart

Issue 11472016: Revert "Add logging system to pub and sprinkle some logging in." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | « utils/pub/pub.dart ('k') | utils/pub/validator.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/system_cache.dart
diff --git a/utils/pub/system_cache.dart b/utils/pub/system_cache.dart
index ce913e0958968802e6ede6add45fc4d50e965150..932cbbb48771c38daaad145a962a7a7e10d191c8 100644
--- a/utils/pub/system_cache.dart
+++ b/utils/pub/system_cache.dart
@@ -10,7 +10,6 @@ import 'git_source.dart';
import 'hosted_source.dart';
import 'io.dart';
import 'io.dart' as io show createTempDir;
-import 'log.dart' as log;
import 'package.dart';
import 'sdk_source.dart';
import 'source.dart';
@@ -103,7 +102,6 @@ class SystemCache {
/// Delete's the system cache's internal temp directory.
Future deleteTempDir() {
- log.fine('Clean up system cache temp directory $tempDir.');
return dirExists(tempDir).chain((exists) {
if (!exists) return new Future.immediate(null);
return deleteDir(tempDir);
« no previous file with comments | « utils/pub/pub.dart ('k') | utils/pub/validator.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698