| 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);
|
|
|