mirror of
https://github.com/samply/bridgehead.git
synced 2025-06-16 23:00:15 +02:00
8 lines
100 B
Bash
8 lines
100 B
Bash
#!/bin/bash
|
|
|
|
log() {
|
|
SEVERITY="$1"
|
|
shift
|
|
echo -e "$(date +'%Y-%m-%d %T')" "$SEVERITY:" "$@"
|
|
}
|