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

Unified Diff: recipe_engine/fetch.py

Issue 2831043003: [fetch] Make GitBackend._execute log at info level (Closed)
Patch Set: Created 3 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: recipe_engine/fetch.py
diff --git a/recipe_engine/fetch.py b/recipe_engine/fetch.py
index 8f417bf34906bf9da46a318720484a0ff8546544..b12fea11f5d9c034802b8d1292a96818591a775c 100644
--- a/recipe_engine/fetch.py
+++ b/recipe_engine/fetch.py
@@ -258,7 +258,7 @@ class GitBackend(Backend):
def _execute(self, *args):
"""Runs a raw command. Separate so it's easily mockable."""
- LOGGER.debug('Running: %s', args)
+ LOGGER.info('Running: %s', args)
return subprocess42.check_output(args)
def _ensure_local_repo_exists(self):
« 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