diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-05-29 17:21:30 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-05-29 17:21:30 -0700 |
commit | 92c21d713458c011dc7adefb9b0b36cec83892ab (patch) | |
tree | 11a91b4ec8bd2142e0479465fdb3b680ad1d4bab | |
parent | 00351001863f22d61bda745e2be031e160b5f51f (diff) | |
download | spack-92c21d713458c011dc7adefb9b0b36cec83892ab.tar.gz spack-92c21d713458c011dc7adefb9b0b36cec83892ab.tar.bz2 spack-92c21d713458c011dc7adefb9b0b36cec83892ab.tar.xz spack-92c21d713458c011dc7adefb9b0b36cec83892ab.zip |
debug instead of info logging in llnl.util.filesystem
-rw-r--r-- | lib/spack/llnl/util/filesystem.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/llnl/util/filesystem.py b/lib/spack/llnl/util/filesystem.py index 1fdd25f608..3b34e04740 100644 --- a/lib/spack/llnl/util/filesystem.py +++ b/lib/spack/llnl/util/filesystem.py @@ -152,7 +152,7 @@ def copy_mode(src, dest): def install(src, dest): """Manually install a file to a particular location.""" - tty.info("Installing %s to %s" % (src, dest)) + tty.debug("Installing %s to %s" % (src, dest)) shutil.copy(src, dest) set_install_permissions(dest) copy_mode(src, dest) @@ -160,7 +160,7 @@ def install(src, dest): def install_tree(src, dest, **kwargs): """Manually install a file to a particular location.""" - tty.info("Installing %s to %s" % (src, dest)) + tty.debug("Installing %s to %s" % (src, dest)) shutil.copytree(src, dest, **kwargs) for s, d in traverse_tree(src, dest, follow_nonexisting=False): |