| Index: presubmit_support.py
|
| diff --git a/presubmit_support.py b/presubmit_support.py
|
| index 5569485959673f6614be1deb07614a7f8946b98f..594ac6878bf8a05b622ca44d45ed3d7219f8f76d 100755
|
| --- a/presubmit_support.py
|
| +++ b/presubmit_support.py
|
| @@ -385,7 +385,9 @@ class InputApi(object):
|
|
|
| def LocalPaths(self, include_dirs=False):
|
| """Returns local paths of input_api.AffectedFiles()."""
|
| - return [af.LocalPath() for af in self.AffectedFiles(include_dirs)]
|
| + paths = [af.LocalPath() for af in self.AffectedFiles(include_dirs)]
|
| + logging.debug("LocalPaths: %s", paths)
|
| + return paths
|
|
|
| def AbsoluteLocalPaths(self, include_dirs=False):
|
| """Returns absolute local paths of input_api.AffectedFiles()."""
|
|
|