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

Unified Diff: utils/pub/system_cache.dart

Issue 11437019: Add logging system to pub and sprinkle some logging in. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: print() -> log.message(). 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
Index: utils/pub/system_cache.dart
diff --git a/utils/pub/system_cache.dart b/utils/pub/system_cache.dart
index 0e4822c6c37f00eda1a31c65ff7a59cc5e36d4ee..73df7f2f65076ecef127d286c4f88b0fd03a938f 100644
--- a/utils/pub/system_cache.dart
+++ b/utils/pub/system_cache.dart
@@ -8,6 +8,7 @@ import 'dart:io';
import 'io.dart';
import 'io.dart' as io show createTempDir;
+import 'log.dart' as log;
import 'package.dart';
import 'source.dart';
import 'source_registry.dart';
@@ -89,6 +90,7 @@ 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);

Powered by Google App Engine
This is Rietveld 408576698