logging optimizations

This commit is contained in:
RandomNinjaAtk 2023-07-19 14:41:16 +00:00 committed by GitHub
parent 283640634a
commit a71813bd92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
#!/usr/bin/with-contenv bash
scriptVersion="2.3"
scriptVersion="2.4"
scriptName="Audio"
log () {
@ -9,15 +9,20 @@ log () {
logfileSetup () {
# auto-clean up log file to reduce space usage
if [ -f "/config/logs/Audio.txt" ]; then
find /config/logs -type f -name "Audio.txt" -size +5000k -delete
sleep 0.01
if [ -f "/config/logs/$scriptName.txt" ]; then
find /config/logs -type f -name "$scriptName.txt" -size +1024k -delete
fi
if [ ! -f "/config/logs/$scriptName.txt" ]; then
touch "/config/logs/$scriptName.txt"
chmod 666 "/config/logs/$scriptName.txt"
fi
touch "/config/logs/Audio.txt"
exec &> >(tee -a "/config/logs/Audio.txt")
chmod 666 "/config/logs/Audio.txt"
}
# Create Log, start writing...
logfileSetup
exec &> >(tee -a "/config/logs/$scriptName.txt")
verifyConfig () {
#### Import Settings
source /config/extended.conf