#!/usr/bin/env bash
# Only show debug message when DEBUG="Y" or DEBUG="anything"
# Use unset DEBUG will stop messages.
dbug()
{
  if [ "${DEBUG}" = "y" ] || [ "${DEBUG}" = "Y" ]; then
       echo "${1}"
  fi
}

