15 lines
351 B
Bash
Executable File
15 lines
351 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function error_handler() {
|
|
>&2 echo "Exited with BAD EXIT CODE '${2}' in ${0} script at line: ${1}."
|
|
exit "$2"
|
|
}
|
|
trap 'error_handler ${LINENO} $?' ERR
|
|
set -o errtrace -o errexit -o nounset -o pipefail
|
|
|
|
if [[ ! -f /app/log/db_development.log ]]; then
|
|
touch /app/log/db_development.log
|
|
fi
|
|
|
|
tail -f /app/log/db_development.log
|