diff options
-rw-r--r-- | lib/spack/spack/installer.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/spack/spack/installer.py b/lib/spack/spack/installer.py index 010632076c..196858830a 100644 --- a/lib/spack/spack/installer.py +++ b/lib/spack/spack/installer.py @@ -1328,8 +1328,7 @@ class PackageInstaller(object): pkg (spack.package.Package): the package to be built and installed """ if not os.path.exists(pkg.spec.prefix): - tty.verbose('Creating the installation directory {0}' - .format(pkg.spec.prefix)) + tty.debug('Creating the installation directory {0}'.format(pkg.spec.prefix)) spack.store.layout.create_install_directory(pkg.spec) else: # Set the proper group for the prefix |