feat(unitproc):checkAppFileDir:Add displayMissing(), version nums
[BK-2020-03.git] / unitproc / bktemp-vbm
index c7a82b5e3a46cec314a3246f2ddd72300755d5b8..7e1687b5c690d8933b563482b221e45bdd766616 100644 (file)
@@ -4,11 +4,11 @@
 vbm() {
     # Description: Prints verbose message ("vbm") to stderr if optionVerbose is set to "true".
     # Usage: vbm "DEBUG:verbose message here"
-    # Version 0.1.0
+    # Version 0.1.1
     # Input: arg1: string
     #        vars: optionVerbose
     # Output: stderr
-    # Depends: echo
+    # Depends: echo 8, date 8
 
     if [ "$optionVerbose" = "true" ]; then
        functionTime=$(date --iso-8601=ns); # Save current time in nano seconds.
@@ -17,7 +17,7 @@ vbm() {
 
     # End function
     return 0; # Function finished.
-} # Verbose message display function.
+} # Displays message if optionVerbose true
 
 # Author: Steven Baltakatei Sandoval
 # License: GPLv3+