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

Unified Diff: presubmit_support.py

Issue 250383006: logged changed paths list (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 8 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()."""
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698