Move two log messages around, so that output looks better.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Aug 11 09:42:13 2008 +0000 (2008-08-11)
changeset 786a3619ef5ed98
parent 783 830fb1f3e490
child 787 0725d7f8ab22
Move two log messages around, so that output looks better.

/trunk/scripts/functions | 4 2 2 0 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
scripts/functions
     1.1 --- a/scripts/functions	Sat Aug 09 21:09:22 2008 +0000
     1.2 +++ b/scripts/functions	Mon Aug 11 09:42:13 2008 +0000
     1.3 @@ -488,6 +488,7 @@
     1.4                  CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
     1.5                  CT_DoGetFile "${url}/${file}${ext}"
     1.6                  if [ -f "${file}${ext}" ]; then
     1.7 +                    CT_DoLog EXTRA "Got '${file}' from the LAN mirror"
     1.8                      if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
     1.9                          # The file may already exist if downloads are forced: remove it first
    1.10                          CT_DoLog EXTRA "Saving '${file}' to local storage"
    1.11 @@ -495,7 +496,6 @@
    1.12                          CT_DoExecLog ALL mv -f "${file}${ext}" "${CT_LOCAL_TARBALLS_DIR}"
    1.13                          CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" "${file}${ext}"
    1.14                      fi
    1.15 -                    CT_DoLog EXTRA "Got '${file}' from the LAN mirror"
    1.16                      return 0
    1.17                  fi
    1.18              done
    1.19 @@ -510,6 +510,7 @@
    1.20              CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
    1.21              CT_DoGetFile "${url}/${file}${ext}"
    1.22              if [ -f "${file}${ext}" ]; then
    1.23 +                CT_DoLog EXTRA "Got '${file}' from the Internet"
    1.24                  if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
    1.25                      # The file may already exist if downloads are forced: remove it first
    1.26                      CT_DoLog EXTRA "Saving '${file}' to local storage"
    1.27 @@ -517,7 +518,6 @@
    1.28                      CT_DoExecLog ALL mv -f "${file}${ext}" "${CT_LOCAL_TARBALLS_DIR}"
    1.29                      CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${file}${ext}" "${file}${ext}"
    1.30                  fi
    1.31 -                CT_DoLog EXTRA "Got '${file}' from the Internet"
    1.32                  return 0
    1.33              fi
    1.34          done