Log retrieved file emssages to DEBUG level, not EXTRA.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Aug 17 14:13:00 2008 +0000 (2008-08-17)
changeset 799a31e625eb343
parent 798 aa89c67f0ffc
child 800 b3beac3a3a1d
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(-)
scripts/build/libc_eglibc.sh
scripts/functions
     1.1 --- a/scripts/build/libc_eglibc.sh	Sun Aug 17 14:10:44 2008 +0000
     1.2 +++ b/scripts/build/libc_eglibc.sh	Sun Aug 17 14:13:00 2008 +0000
     1.3 @@ -72,7 +72,7 @@
     1.4         [ -a "${CT_LOCAL_TARBALLS_DIR}/${eglibc_localedef}" ]    && \
     1.5         [ -a "${CT_LOCAL_TARBALLS_DIR}/${eglibc_ports}" ]        && \
     1.6         [ "${CT_FORCE_DOWNLOAD}" != "y" ]; then
     1.7 -        CT_DoLog EXTRA "Got 'eglibc-${CT_LIBC_VERSION}' from local storage"
     1.8 +        CT_DoLog DEBUG "Got 'eglibc-${CT_LIBC_VERSION}' from local storage"
     1.9          for file in ${eglibc} ${eglibc_linuxthreads} ${eglibc_localedef} ${eglibc_ports}; do
    1.10              CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${file}" "${CT_TARBALLS_DIR}/${file}"
    1.11          done
     2.1 --- a/scripts/functions	Sun Aug 17 14:10:44 2008 +0000
     2.2 +++ b/scripts/functions	Sun Aug 17 14:13:00 2008 +0000
     2.3 @@ -465,7 +465,7 @@
     2.4              CT_DoLog DEBUG "Trying '${CT_LOCAL_TARBALLS_DIR}/${file}${ext}'"
     2.5              if [ -r "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" -a \
     2.6                   "${CT_FORCE_DOWNLOAD}" != "y" ]; then
     2.7 -                CT_DoLog EXTRA "Got '${file}' from local storage"
     2.8 +                CT_DoLog DEBUG "Got '${file}' from local storage"
     2.9                  CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" "${file}${ext}"
    2.10                  return 0
    2.11              fi
    2.12 @@ -489,7 +489,7 @@
    2.13                  CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
    2.14                  CT_DoGetFile "${url}/${file}${ext}"
    2.15                  if [ -f "${file}${ext}" ]; then
    2.16 -                    CT_DoLog EXTRA "Got '${file}' from the LAN mirror"
    2.17 +                    CT_DoLog DEBUG "Got '${file}' from the LAN mirror"
    2.18                      if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
    2.19                          # The file may already exist if downloads are forced: remove it first
    2.20                          CT_DoLog EXTRA "Saving '${file}' to local storage"
    2.21 @@ -511,7 +511,7 @@
    2.22              CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
    2.23              CT_DoGetFile "${url}/${file}${ext}"
    2.24              if [ -f "${file}${ext}" ]; then
    2.25 -                CT_DoLog EXTRA "Got '${file}' from the Internet"
    2.26 +                CT_DoLog DEBUG "Got '${file}' from the Internet"
    2.27                  if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
    2.28                      # The file may already exist if downloads are forced: remove it first
    2.29                      CT_DoLog EXTRA "Saving '${file}' to local storage"