mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-17 20:55:04 +01:00
11 lines
179 B
Bash
Executable File
11 lines
179 B
Bash
Executable File
#!/bin/sh
|
|
|
|
trace()
|
|
{
|
|
if [ -n "${TRACING}" ]; then
|
|
local str="[$(date +%Y-%m-%dT%H:%M:%S%z)] $$ $*"
|
|
echo "${str}" 1>&2
|
|
echo "${str}" >> /cnlogs/gatekeeper.log
|
|
fi
|
|
}
|