Feat: Log-Funktion in einer eigenen Datei

This commit is contained in:
DragonSlayer_14 2025-03-03 17:19:38 +01:00
parent a5f77c9b7f
commit e34f494882

6
Utility/Log.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
# Funktion zum Protokollieren von Nachrichten
log() {
echo "$(date +'%Y-%m-%d %H:%M:%S') - $1"
}