]> git.treefish.org Git - backmeupscotty.git/blobdiff - backmeupscotty
added verbose mode info message
[backmeupscotty.git] / backmeupscotty
index 1daddb8dbec5f14bb61fc812c63f0a7ab7a4ffed..1df23cd77c087c45ef247b714e6d3bd7a7f88327 100644 (file)
@@ -10,7 +10,7 @@ _ERROR_ENCOUNTERED=0
 _UPPERME=$(echo $(basename $0) | tr '[:lower:]' '[:upper:]')
 
 function timestamp {
-    echo $(date +"[%y-%m-%d %H:%M:%S]")
+    date +'[%y-%m-%d|%H:%M:%S]'
 }
 
 function scottyline {
@@ -18,7 +18,7 @@ function scottyline {
 }
 
 function scottyinfo {
-    if ($_ERROR_ENCOUNTERED -eq 0); then
+    if [ $_ERROR_ENCOUNTERED -eq 0 ]; then
        scottyline $@
     else
        scottyline $@ >&2
@@ -27,7 +27,10 @@ function scottyinfo {
 
 function scottyerror {
     scottyline $@ >&2
-    _ERROR_ENCOUNTERED=1
+    if [ $_ERROR_ENCOUNTERED -eq 0 ]; then
+       _ERROR_ENCOUNTERED=1
+       scottyline "Going into verbose mode after error encounter." >&2
+    fi
 }
 
 function ssh255 {