Package log_functions.sh into platform-util

This update simply removes the unpackaged file.

The file is already moved to stx-integ by other update under same story/task.

https://review.openstack.org/#/c/624250

Story: 2004043
Task: 28462
Change-Id: Ie1866d2a9494b8b54fa6b6be4f7b44239e2e347d
Signed-off-by: Eric MacDonald <eric.macdonald@windriver.com>
This commit is contained in:
Eric MacDonald 2018-12-10 19:07:53 -05:00
parent b8bb709f18
commit 87ff8c93e6
1 changed files with 0 additions and 45 deletions

View File

@ -1,45 +0,0 @@
#!/bin/bash
################################################################################
# Copyright (c) 2013-2015 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
################################################################################
################################################################################
# Log if debug is enabled via LOG_DEBUG
#
################################################################################
function log_debug {
if [ ! -z "${LOG_DEBUG}" ]; then
logger -p debug -t "$0[${PPID}]" -s "$@" 2>&1
fi
}
################################################################################
# Log unconditionally to STDERR
#
################################################################################
function log_error {
logger -p error -t "$0[${PPID}]" -s "$@"
}
################################################################################
# Log unconditionally to STDOUT
#
################################################################################
function log {
logger -p info -t "$0[${PPID}]" -s "$@" 2>&1
}
################################################################################
# Utility function to print the status of a command result
#
################################################################################
function print_status {
if [ "$1" -eq "0" ]; then
echo "[ OK ]"
else
echo "[FAILED]"
fi
}