X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/blobdiff_plain/bb715c4010d85f8be95746f119dd5b729a3d7dcf..c0d1459e2364f1d3f4afa3338109f86ffca4d138:/unitproc/bktemp-vbm

diff --git a/unitproc/bktemp-vbm b/unitproc/bktemp-vbm
index 9698fea..8fa7c1c 100644
--- a/unitproc/bktemp-vbm
+++ b/unitproc/bktemp-vbm
@@ -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+