Skip to content

Commit

Permalink
[fetch] Make GitBackend._execute log at info level
Browse files Browse the repository at this point in the history
R=dnj@chromium.org, phajdan.jr@chromium.org
BUG=

Review-Url: https://codereview.chromium.org/2831043003
  • Loading branch information
riannucci authored and Commit bot committed Apr 21, 2017
1 parent 51e6ae2 commit 83831a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipe_engine/fetch.py
Expand Up @@ -258,7 +258,7 @@ def _git(self, *args):

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):
Expand Down

0 comments on commit 83831a2

Please sign in to comment.