diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-08-17 14:13:00 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-08-17 14:13:00 +0000 |
commit | 99691ee4d6889de91748060f6d8c76da56c1d042 (patch) | |
tree | 079e55b690c7fed5d2c0dfd557baee9f39eb902e /scripts/functions | |
parent | 5742930b13cf6686f23177a1c76361e68b6656f5 (diff) | |
download | crosstool-ng-99691ee4d6889de91748060f6d8c76da56c1d042.tar.gz crosstool-ng-99691ee4d6889de91748060f6d8c76da56c1d042.tar.bz2 crosstool-ng-99691ee4d6889de91748060f6d8c76da56c1d042.zip |
Log retrieved file emssages to DEBUG level, not EXTRA.
/trunk/scripts/build/libc_eglibc.sh | 2 1 1 0 +-
/trunk/scripts/functions | 6 3 3 0 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/functions b/scripts/functions index d877d3b1..d80e2fad 100644 --- a/scripts/functions +++ b/scripts/functions @@ -465,7 +465,7 @@ CT_GetFile() { CT_DoLog DEBUG "Trying '${CT_LOCAL_TARBALLS_DIR}/${file}${ext}'" if [ -r "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" -a \ "${CT_FORCE_DOWNLOAD}" != "y" ]; then - CT_DoLog EXTRA "Got '${file}' from local storage" + CT_DoLog DEBUG "Got '${file}' from local storage" CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" "${file}${ext}" return 0 fi @@ -489,7 +489,7 @@ CT_GetFile() { CT_DoLog DEBUG "Trying '${url}/${file}${ext}'" CT_DoGetFile "${url}/${file}${ext}" if [ -f "${file}${ext}" ]; then - CT_DoLog EXTRA "Got '${file}' from the LAN mirror" + CT_DoLog DEBUG "Got '${file}' from the LAN mirror" if [ "${CT_SAVE_TARBALLS}" = "y" ]; then # The file may already exist if downloads are forced: remove it first CT_DoLog EXTRA "Saving '${file}' to local storage" @@ -511,7 +511,7 @@ CT_GetFile() { CT_DoLog DEBUG "Trying '${url}/${file}${ext}'" CT_DoGetFile "${url}/${file}${ext}" if [ -f "${file}${ext}" ]; then - CT_DoLog EXTRA "Got '${file}' from the Internet" + CT_DoLog DEBUG "Got '${file}' from the Internet" if [ "${CT_SAVE_TARBALLS}" = "y" ]; then # The file may already exist if downloads are forced: remove it first CT_DoLog EXTRA "Saving '${file}' to local storage" |