diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-11-13 11:23:44 +0000 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2015-11-15 10:16:22 +0000 |
commit | 580b246ae589e4b6011f6149e4680b1fa08497f4 (patch) | |
tree | b45a0d5b85ce82c9e0cc0574a5677efe5acd0994 /pbuilder-checkparams | |
parent | 7222b9fadd6be6aa3c50b1aceab2acf9a8ff40b5 (diff) | |
download | pbuilder-580b246ae589e4b6011f6149e4680b1fa08497f4.tar pbuilder-580b246ae589e4b6011f6149e4680b1fa08497f4.tar.gz |
use log.i() instead of log()
Diffstat (limited to 'pbuilder-checkparams')
-rwxr-xr-x | pbuilder-checkparams | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 15f26cc..e41c8ae 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -165,7 +165,7 @@ while [ -n "$1" ]; do shift; shift; ;; --logfile) - log "I: Logging to $2" + log.i "Logging to $2" exec > >(tee "$2") 2>&1 PBUILDER_BUILD_LOGFILE=$(readlink -f "$2") shift; shift; @@ -255,13 +255,13 @@ while [ -n "$1" ]; do ;; --no-targz) # specify this option if I am running in no-targz mode - log "I: Running in no-targz mode" + log.i "Running in no-targz mode" INTERNAL_BUILD_UML="yes" shift; ;; --internal-build-uml) # specify this option if I am running inside UML. - log "I: Running in pbuilder-user-mode-linux mode" + log.i "Running in pbuilder-user-mode-linux mode" INTERNAL_BUILD_UML="yes" IGNORE_UMOUNT="no" shift; |