Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit ea0ad31

Browse files
committed
remove cmd log level
1 parent 0d0a6f6 commit ea0ad31

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dev.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ _start_gunicorn() {
2424
pip install debugpy
2525
python -m debugpy --listen 0.0.0.0:12345 -m gunicorn codecov.wsgi:application --reload --bind 0.0.0.0:8000 --access-logfile '-' --timeout "${GUNICORN_TIMEOUT:-600}" $suffix
2626
fi
27-
gunicorn codecov.wsgi:application --log-level=info --reload --bind 0.0.0.0:8000 --access-logfile '-' --timeout "${GUNICORN_TIMEOUT:-600}" $suffix
27+
gunicorn codecov.wsgi:application --reload --bind 0.0.0.0:8000 --access-logfile '-' --timeout "${GUNICORN_TIMEOUT:-600}" $suffix
2828
}
2929

3030
if [ -z "$1" ];

enterprise.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ then
3535
elif [[ "$1" = "rti" ]];
3636
then
3737
# Start api
38-
${SUB}$prefix gunicorn codecov.wsgi:application --log-level=info --workers=$GUNICORN_WORKERS --bind ${CODECOV_API_BIND:-0.0.0.0}:${CODECOV_API_PORT:-8000} --access-logfile '-' ${statsd}--timeout "${GUNICORN_TIMEOUT:-600}"${POST}
38+
${SUB}$prefix gunicorn codecov.wsgi:application --workers=$GUNICORN_WORKERS --bind ${CODECOV_API_BIND:-0.0.0.0}:${CODECOV_API_PORT:-8000} --access-logfile '-' ${statsd}--timeout "${GUNICORN_TIMEOUT:-600}"${POST}
3939
elif [[ "$1" = "migrate" ]];
4040
then
4141
python manage.py migrate

prod.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ export PROMETHEUS_MULTIPROC_DIR="${PROMETHEUS_MULTIPROC_DIR:-$HOME/.prometheus}"
1111
rm -r ${PROMETHEUS_MULTIPROC_DIR?}/* 2> /dev/null
1212
mkdir -p "$PROMETHEUS_MULTIPROC_DIR"
1313

14-
$prefix gunicorn codecov.wsgi:application --log-level=info --workers=2 --bind 0.0.0.0:8000 --access-logfile '-' --statsd-host ${STATSD_HOST}:${STATSD_PORT} --timeout "${GUNICORN_TIMEOUT:-600}"
14+
$prefix gunicorn codecov.wsgi:application --workers=2 --bind 0.0.0.0:8000 --access-logfile '-' --statsd-host ${STATSD_HOST}:${STATSD_PORT} --timeout "${GUNICORN_TIMEOUT:-600}"

staging.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ export PROMETHEUS_MULTIPROC_DIR="${PROMETHEUS_MULTIPROC_DIR:-$HOME/.prometheus}"
1717
rm -r ${PROMETHEUS_MULTIPROC_DIR?}/* 2> /dev/null
1818
mkdir -p "$PROMETHEUS_MULTIPROC_DIR"
1919

20-
$prefix gunicorn codecov.wsgi:application --log-level=info --reload --workers=2 --bind 0.0.0.0:8000 --access-logfile '-' --timeout "${GUNICORN_TIMEOUT:-600}" $suffix
20+
$prefix gunicorn codecov.wsgi:application --reload --workers=2 --bind 0.0.0.0:8000 --access-logfile '-' --timeout "${GUNICORN_TIMEOUT:-600}" $suffix

0 commit comments

Comments
 (0)