# HG changeset patch # User "Yann E. MORIN" # Date 1218982380 0 # Node ID a31e625eb34369835cc0afeeb98e833288845f26 # Parent aa89c67f0ffc8c665eb22dab793d3c422a7a5476 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(-) diff -r aa89c67f0ffc -r a31e625eb343 scripts/build/libc_eglibc.sh --- a/scripts/build/libc_eglibc.sh Sun Aug 17 14:10:44 2008 +0000 +++ b/scripts/build/libc_eglibc.sh Sun Aug 17 14:13:00 2008 +0000 @@ -72,7 +72,7 @@ [ -a "${CT_LOCAL_TARBALLS_DIR}/${eglibc_localedef}" ] && \ [ -a "${CT_LOCAL_TARBALLS_DIR}/${eglibc_ports}" ] && \ [ "${CT_FORCE_DOWNLOAD}" != "y" ]; then - CT_DoLog EXTRA "Got 'eglibc-${CT_LIBC_VERSION}' from local storage" + CT_DoLog DEBUG "Got 'eglibc-${CT_LIBC_VERSION}' from local storage" for file in ${eglibc} ${eglibc_linuxthreads} ${eglibc_localedef} ${eglibc_ports}; do CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${file}" "${CT_TARBALLS_DIR}/${file}" done diff -r aa89c67f0ffc -r a31e625eb343 scripts/functions --- a/scripts/functions Sun Aug 17 14:10:44 2008 +0000 +++ b/scripts/functions Sun Aug 17 14:13:00 2008 +0000 @@ -465,7 +465,7 @@ 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_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_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"