diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/util/environment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/util/environment.py b/lib/spack/spack/util/environment.py index af15cd2764..1d53d33efc 100644 --- a/lib/spack/spack/util/environment.py +++ b/lib/spack/spack/util/environment.py @@ -644,8 +644,8 @@ class EnvironmentModifications: elif isinstance(envmod, AppendFlagsEnv): rev.remove_flags(envmod.name, envmod.value) else: - tty.warn( - f"Skipping reversal of unreversable operation {type(envmod)} {envmod.name}" + tty.debug( + f"Skipping reversal of irreversible operation {type(envmod)} {envmod.name}" ) return rev |