feat(unitproc):vbm: Add script name to verbose error message
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sat, 11 Jul 2020 09:27:02 +0000 (09:27 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sat, 11 Jul 2020 09:27:02 +0000 (09:27 +0000)
unitproc/bktemp-vbm

index 9698fea8fadfa5ff5ebdd0f3fd412837a0b1efb2..8fa7c1cac2c525f9c7742727c7ae6b762e31c034 100644 (file)
@@ -3,8 +3,8 @@
 
 vbm() {
     # Description: Prints verbose message ("vbm") to stderr if optionVerbose is set to "true".
-    # Usage: vbm "DEBUG:verbose message here"
-    # Version 0.1.2
+    # Usage: vbm "DEBUG :verbose message here"
+    # Version 0.1.3
     # Input: arg1: string
     #        vars: optionVerbose
     # Output: stderr
@@ -12,12 +12,18 @@ vbm() {
 
     if [ "$optionVerbose" = "true" ]; then
        functionTime=$(date --iso-8601=ns); # Save current time in nano seconds.
-       echo "[$functionTime] ""$*" 1>&2; # Display argument text.
+       echo "[$functionTime]:$0:""$*" 1>&2; # Display argument text.
     fi
 
     # End function
     return 0; # Function finished.
 } # Displays message if optionVerbose true
 
+#==BEGIN sample code==
+vbm "STATUS:This is a status message.";
+optionVerbose="true";
+vbm "STATUS:This is another status message.";
+#==END sample code==
+
 # Author: Steven Baltakatei Sandoval
 # License: GPLv3+