Add debug to file
This commit is contained in:
parent
281fc830ae
commit
234722a2f5
|
@ -6,6 +6,7 @@ usage: ${0##*/} [command]
|
|||
-h Print this help message.
|
||||
-w Use whiptail.
|
||||
-d Use dialog.
|
||||
-f Debug to CocoRice.log
|
||||
EOF
|
||||
}
|
||||
|
||||
|
@ -30,6 +31,11 @@ checkParameters() {
|
|||
checkForDependencies "dialog"
|
||||
setDialogBox "dialog"
|
||||
;;
|
||||
f)
|
||||
checkForDependencies "libnewt"
|
||||
setDialogBox "whiptail"
|
||||
setDebugToFile false
|
||||
;;
|
||||
?)
|
||||
printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG"
|
||||
exit 1
|
||||
|
|
|
@ -158,3 +158,11 @@ calcHeightDialog() {
|
|||
setDialogBox() {
|
||||
export dialogBox=${1}
|
||||
}
|
||||
|
||||
setDebugToFile() {
|
||||
export debugFlagToFile=${1}
|
||||
}
|
||||
|
||||
debug() {
|
||||
[ $debugFlagToFile = true ] && tee -a CocoRice.log > /dev/null
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue