From e646dd9d835e0b41bf46102913b10fcd49e34843 Mon Sep 17 00:00:00 2001 From: Stypox Date: Sat, 2 Aug 2025 01:09:45 +0200 Subject: [PATCH] Fix start_db.sh again --- start_db.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start_db.sh b/start_db.sh index 5a480395..a82e2c5a 100755 --- a/start_db.sh +++ b/start_db.sh @@ -32,8 +32,8 @@ elif [[ $# == 1 ]] && [[ $1 == "run" ]]; then elif [[ $# == 1 ]] && [[ $1 == "run_without_output" ]]; then echo "Processing updates and running server without output" pushd src 2>&1 > /dev/null - python manage.py processupdates 2>&1 | (grep -e "^ERROR" -e "^WARNING" -e "^HTTP" || true) - python manage.py runserver 2>&1 | (grep -e "^ERROR" -e "^WARNING" -e "^HTTP" || true) + python manage.py processupdates 2>&1 | (grep -v "^DEBUG " || true) + python manage.py runserver 2>&1 | (grep -v "^DEBUG " || true) popd 2>&1 > /dev/null elif [[ $# > 0 ]] && [[ $1 == "manage" ]]; then pushd src