Update create_lxc.sh

revert add error message, silent function not used
This commit is contained in:
tteckster 2023-05-06 17:19:12 -04:00 committed by GitHub
parent 5e7a808fb9
commit 9c3fb90eb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -22,10 +22,7 @@ function error_handler() {
local line_number="$1"
local command="$2"
local error_message="${RD}[ERROR]${CL} in line ${RD}$line_number${CL}: exit code ${RD}$exit_code${CL}: while executing command ${YW}$command${CL}"
echo -e "\n$error_message"
if [[ "$line_number" -eq 22 ]]; then
echo -e "The silent function has suppressed the error, run the script with verbose mode enabled, which will provide more detailed output.\n"
fi
echo -e "\n$error_message\n"
}
function msg_info() {
local msg="$1"