diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2021-02-08 12:29:19 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 10:29:19 -0800 |
commit | 48954a5a3e1acbdea8f9c16f64a0f479a56aac96 (patch) | |
tree | c6f44c0b7db10cb9706aa71179fc16e3a05ad44c | |
parent | b37c601a01a3b140f2a54c5ff679a011aad7eb66 (diff) | |
download | spack-48954a5a3e1acbdea8f9c16f64a0f479a56aac96.tar.gz spack-48954a5a3e1acbdea8f9c16f64a0f479a56aac96.tar.bz2 spack-48954a5a3e1acbdea8f9c16f64a0f479a56aac96.tar.xz spack-48954a5a3e1acbdea8f9c16f64a0f479a56aac96.zip |
Restore verbosity of patching (#21233)
-rw-r--r-- | lib/spack/spack/package.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/spack/spack/package.py b/lib/spack/spack/package.py index d96650a355..3e19264e24 100644 --- a/lib/spack/spack/package.py +++ b/lib/spack/spack/package.py @@ -1379,7 +1379,7 @@ class PackageBase(six.with_metaclass(PackageMeta, PackageViewMixin, object)): # If there are no patches, note it. if not patches and not has_patch_fun: - tty.debug('No patches needed for {0}'.format(self.name)) + tty.msg('No patches needed for {0}'.format(self.name)) return # Construct paths to special files in the archive dir used to @@ -1397,10 +1397,10 @@ class PackageBase(six.with_metaclass(PackageMeta, PackageViewMixin, object)): # If this file exists, then we already applied all the patches. if os.path.isfile(good_file): - tty.debug('Already patched {0}'.format(self.name)) + tty.msg('Already patched {0}'.format(self.name)) return elif os.path.isfile(no_patches_file): - tty.debug('No patches needed for {0}'.format(self.name)) + tty.msg('No patches needed for {0}'.format(self.name)) return # Apply all the patches for specs that match this one @@ -1409,7 +1409,7 @@ class PackageBase(six.with_metaclass(PackageMeta, PackageViewMixin, object)): try: with fsys.working_dir(self.stage.source_path): patch.apply(self.stage) - tty.debug('Applied patch {0}'.format(patch.path_or_url)) + tty.msg('Applied patch {0}'.format(patch.path_or_url)) patched = True except spack.error.SpackError as e: tty.debug(e) @@ -1423,7 +1423,7 @@ class PackageBase(six.with_metaclass(PackageMeta, PackageViewMixin, object)): try: with fsys.working_dir(self.stage.source_path): self.patch() - tty.debug('Ran patch() for {0}'.format(self.name)) + tty.msg('Ran patch() for {0}'.format(self.name)) patched = True except spack.multimethod.NoSuchMethodError: # We are running a multimethod without a default case. @@ -1433,7 +1433,7 @@ class PackageBase(six.with_metaclass(PackageMeta, PackageViewMixin, object)): # directive, AND the patch function didn't apply, say # no patches are needed. Otherwise, we already # printed a message for each patch. - tty.debug('No patches needed for {0}'.format(self.name)) + tty.msg('No patches needed for {0}'.format(self.name)) except spack.error.SpackError as e: tty.debug(e) |