| Index: utils/pub/git.dart
 | 
| diff --git a/utils/pub/git.dart b/utils/pub/git.dart
 | 
| index 6defde309a90d0730f614f88a2f3e0d26087297a..80901a98fef5762c165178461291dd6a6ab4049b 100644
 | 
| --- a/utils/pub/git.dart
 | 
| +++ b/utils/pub/git.dart
 | 
| @@ -8,7 +8,6 @@
 | 
|  library git;
 | 
|  
 | 
|  import 'io.dart';
 | 
| -import 'log.dart' as log;
 | 
|  import 'utils.dart';
 | 
|  
 | 
|  /// Tests whether or not the git command-line app is available for use.
 | 
| @@ -58,7 +57,6 @@ Future<String> get _gitCommand {
 | 
|        return null;
 | 
|      });
 | 
|    }).transform((command) {
 | 
| -    log.fine('Determined git command $command.');
 | 
|      _gitCommandCache = command;
 | 
|      return command;
 | 
|    });
 | 
| 
 |