Minor fix

This commit is contained in:
deajan 2016-12-12 23:42:29 +01:00
parent c7ad48bb80
commit 68d0306713
1 changed files with 3 additions and 3 deletions

View File

@ -143,11 +143,11 @@ function RemoteLogger {
local retval="${3:-undef}" # optional return value of command local retval="${3:-undef}" # optional return value of command
if [ "$_LOGGER_PREFIX" == "time" ]; then if [ "$_LOGGER_PREFIX" == "time" ]; then
prefix="TIME: $SECONDS - " prefix="Remote TIME: $SECONDS - "
elif [ "$_LOGGER_PREFIX" == "date" ]; then elif [ "$_LOGGER_PREFIX" == "date" ]; then
prefix="$(date) - " prefix="Remote $(date) - "
else else
prefix="" prefix="Remote "
fi fi
if [ "$level" == "CRITICAL" ]; then if [ "$level" == "CRITICAL" ]; then