Add debug to file

This commit is contained in:
Santiago Lo Coco 2022-01-09 20:54:00 -03:00
parent 281fc830ae
commit 234722a2f5
2 changed files with 14 additions and 0 deletions

View File

@ -6,6 +6,7 @@ usage: ${0##*/} [command]
-h Print this help message. -h Print this help message.
-w Use whiptail. -w Use whiptail.
-d Use dialog. -d Use dialog.
-f Debug to CocoRice.log
EOF EOF
} }
@ -30,6 +31,11 @@ checkParameters() {
checkForDependencies "dialog" checkForDependencies "dialog"
setDialogBox "dialog" setDialogBox "dialog"
;; ;;
f)
checkForDependencies "libnewt"
setDialogBox "whiptail"
setDebugToFile false
;;
?) ?)
printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG" printf '%s: invalid option - '\''%s'\'\\n "${0##*/}" "$OPTARG"
exit 1 exit 1

View File

@ -158,3 +158,11 @@ calcHeightDialog() {
setDialogBox() { setDialogBox() {
export dialogBox=${1} export dialogBox=${1}
} }
setDebugToFile() {
export debugFlagToFile=${1}
}
debug() {
[ $debugFlagToFile = true ] && tee -a CocoRice.log > /dev/null
}