diff --git a/start_db.sh b/start_db.sh index a82e2c5a..3535b0f1 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 -v "^DEBUG " || true) - python manage.py runserver 2>&1 | (grep -v "^DEBUG " || true) + python manage.py processupdates 2>&1 | (grep -vE '^(INFO|DEBUG)|__debug__' || true) + python manage.py runserver 2>&1 | (grep -vE '^(INFO|DEBUG)|__debug__' || true) popd 2>&1 > /dev/null elif [[ $# > 0 ]] && [[ $1 == "manage" ]]; then pushd src