mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-20 06:05:08 +01:00
14 lines
240 B
Bash
14 lines
240 B
Bash
trace()
|
|
{
|
|
if [ -n "${TRACING}" ]; then
|
|
echo "[$(date +%Y-%m-%dT%H:%M:%S%z)] ${1}" > /dev/stderr
|
|
fi
|
|
}
|
|
|
|
trace_rc()
|
|
{
|
|
if [ -n "${TRACING}" ]; then
|
|
echo "[$(date +%Y-%m-%dT%H:%M:%S%z)] Last return code: ${1}" > /dev/stderr
|
|
fi
|
|
}
|