# HG changeset patch # User "Yann E. MORIN" # Date 1180714820 0 # Node ID 7e226579cf8ce15d0d1e90095ab80fb04e0bdc65 # Parent 1761c8b3f415ad9a70aa4538718bac609733defe Messages from the downloaders should be tagged ALL, not DEBUG. diff -r 1761c8b3f415 -r 7e226579cf8c scripts/functions --- a/scripts/functions Tue May 29 19:56:21 2007 +0000 +++ b/scripts/functions Fri Jun 01 16:20:20 2007 +0000 @@ -286,8 +286,8 @@ local _curl=`which curl` case "${_wget},${_curl}" in ,) CT_DoError "Could find neither wget nor curl";; - ,*) CT_DoGetFileCurl "$1" 2>&1 |CT_DoLog DEBUG;; - *) CT_DoGetFileWget "$1" 2>&1 |CT_DoLog DEBUG;; + ,*) CT_DoGetFileCurl "$1" 2>&1 |CT_DoLog ALL;; + *) CT_DoGetFileWget "$1" 2>&1 |CT_DoLog ALL;; esac }