Replace CocoASAIS.debug with CocoASAIS.log
This commit is contained in:
parent
38bdcb1863
commit
6244f2e35d
|
@ -198,9 +198,9 @@ debug() {
|
||||||
if [ $debugFlagToStdout = true ]; then
|
if [ $debugFlagToStdout = true ]; then
|
||||||
tee
|
tee
|
||||||
elif [ $debugFlagToFile = true ]; then
|
elif [ $debugFlagToFile = true ]; then
|
||||||
tee -a CocoASAIS.debug > /dev/null
|
tee -a CocoASAIS.log > /dev/null
|
||||||
elif [ $debugFlag = true ]; then
|
elif [ $debugFlag = true ]; then
|
||||||
tee -a CocoASAIS.debug
|
tee -a CocoASAIS.log
|
||||||
else
|
else
|
||||||
tee > /dev/null
|
tee > /dev/null
|
||||||
fi
|
fi
|
||||||
|
@ -523,7 +523,7 @@ runScript() {
|
||||||
debugFlag=false; debugFlagToFile=false; debugFlagToStdout=false
|
debugFlag=false; debugFlagToFile=false; debugFlagToStdout=false
|
||||||
while getopts ':hdfs' flag; do
|
while getopts ':hdfs' flag; do
|
||||||
case $flag in
|
case $flag in
|
||||||
h) printf 'usage: %s [command]\n\t-h\tPrint this help message.\n\t-d\tDebug to stdout.\n\t-d\tDebug to CocoASAIS.debug file.\n' "${0##*/}" && exit 0 ;;
|
h) printf 'usage: %s [command]\n\t-h\tPrint this help message.\n\t-s\tDebug to stdout and to CocoASAIS.log file.\n\t-f\tDebug to CocoASAIS.log file.\t-s\tDebug to stdout.\n\n' "${0##*/}" && exit 0 ;;
|
||||||
d) debugFlag=true ;;
|
d) debugFlag=true ;;
|
||||||
f) debugFlagToFile=true ;;
|
f) debugFlagToFile=true ;;
|
||||||
s) debugFlagToStdout=true ;;
|
s) debugFlagToStdout=true ;;
|
||||||
|
|
Loading…
Reference in New Issue