Skip to content

Commit

Permalink
Move mandatory process' level to DEBUG (pantsbuild#18982)
Browse files Browse the repository at this point in the history
Since this process runs every time, it prints every time.
  • Loading branch information
thejcannon authored May 12, 2023
1 parent 8128958 commit e63bce3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/python/pants/backend/python/providers/pyenv/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
from pants.engine.unions import UnionRule
from pants.option.option_types import StrListOption
from pants.util.frozendict import FrozenDict
from pants.util.logging import LogLevel
from pants.util.meta import classproperty
from pants.util.strutil import softwrap, stable_hash

Expand Down Expand Up @@ -259,6 +260,7 @@ async def get_python(
ProcessResult,
Process(
pyenv_install.args + (specific_python,),
level=LogLevel.DEBUG,
input_digest=pyenv_install.digest,
description=f"Install Python {python_to_use}",
append_only_caches=pyenv_install.append_only_caches,
Expand Down

0 comments on commit e63bce3

Please sign in to comment.