| Index: utils/pub/system_cache.dart
|
| diff --git a/utils/pub/system_cache.dart b/utils/pub/system_cache.dart
|
| index 932cbbb48771c38daaad145a962a7a7e10d191c8..ce913e0958968802e6ede6add45fc4d50e965150 100644
|
| --- a/utils/pub/system_cache.dart
|
| +++ b/utils/pub/system_cache.dart
|
| @@ -10,6 +10,7 @@ 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';
|
| @@ -102,6 +103,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);
|
|
|