diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-06-01 16:20:20 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-06-01 16:20:20 +0000 |
commit | 6d932e31d8f95ded0437c695199ec48e6d55cb34 (patch) | |
tree | 14b88b51e9f32266458cd8f5c74203564497ca23 /scripts/functions | |
parent | 1bb7c90a8d3e17dd6eafd4536e4a8fc6b3d31fea (diff) | |
download | crosstool-ng-6d932e31d8f95ded0437c695199ec48e6d55cb34.tar.gz crosstool-ng-6d932e31d8f95ded0437c695199ec48e6d55cb34.tar.bz2 crosstool-ng-6d932e31d8f95ded0437c695199ec48e6d55cb34.zip |
Messages from the downloaders should be tagged ALL, not DEBUG.
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/functions b/scripts/functions index 4199e921..6b26d120 100644 --- a/scripts/functions +++ b/scripts/functions @@ -286,8 +286,8 @@ CT_DoGetFile() { 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 } |