Messages from the downloaders should be tagged ALL, not DEBUG.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Jun 01 16:20:20 2007 +0000 (2007-06-01)
changeset 1467e226579cf8c
parent 145 1761c8b3f415
child 147 39e4ef7d6d8d
Messages from the downloaders should be tagged ALL, not DEBUG.
scripts/functions
     1.1 --- a/scripts/functions	Tue May 29 19:56:21 2007 +0000
     1.2 +++ b/scripts/functions	Fri Jun 01 16:20:20 2007 +0000
     1.3 @@ -286,8 +286,8 @@
     1.4      local _curl=`which curl`
     1.5      case "${_wget},${_curl}" in
     1.6          ,)  CT_DoError "Could find neither wget nor curl";;
     1.7 -        ,*) CT_DoGetFileCurl "$1" 2>&1 |CT_DoLog DEBUG;;
     1.8 -        *)  CT_DoGetFileWget "$1" 2>&1 |CT_DoLog DEBUG;;
     1.9 +        ,*) CT_DoGetFileCurl "$1" 2>&1 |CT_DoLog ALL;;
    1.10 +        *)  CT_DoGetFileWget "$1" 2>&1 |CT_DoLog ALL;;
    1.11      esac
    1.12  }
    1.13