diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-01-16 17:52:44 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-01-16 17:52:44 +0100 |
commit | 9bfea6943109d2729a6631179c1565f99f2e692c (patch) | |
tree | a66c04cf04573e94ec9727fcf2531b28804dd5b1 /scripts/functions | |
parent | 68058e12b87427288f69cb1d3f9791fc64a8fdff (diff) | |
download | crosstool-ng-9bfea6943109d2729a6631179c1565f99f2e692c.tar.gz crosstool-ng-9bfea6943109d2729a6631179c1565f99f2e692c.tar.bz2 crosstool-ng-9bfea6943109d2729a6631179c1565f99f2e692c.zip |
scripts/functions: inverse log level ALL and 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 57c8aa70..470a592a 100644 --- a/scripts/functions +++ b/scripts/functions @@ -49,8 +49,8 @@ CT_LOG_LEVEL_ERROR=0 CT_LOG_LEVEL_WARN=1 CT_LOG_LEVEL_INFO=2 CT_LOG_LEVEL_EXTRA=3 -CT_LOG_LEVEL_DEBUG=4 -CT_LOG_LEVEL_ALL=5 +CT_LOG_LEVEL_ALL=4 +CT_LOG_LEVEL_DEBUG=5 # Make it easy to use \n and ! CR=$(printf "\n") |