fix(build): reintroduce `RUST_LOG` info (#7404)

Not having the default `info` level causes some tests to not output the needed logs to debug information.
This commit is contained in:
Gustavo Valverde 2023-08-29 08:45:26 +01:00 committed by GitHub
parent 2b81d845ea
commit ff60260464
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -70,6 +70,9 @@ RUN if [ "$(uname -m)" != "aarch64" ]; then \
# Build arguments and variables set for tracelog levels and debug information
#
# We set defaults to all variables.
ARG RUST_LOG
ENV RUST_LOG=${RUST_LOG:-info}
ARG RUST_BACKTRACE
ENV RUST_BACKTRACE=${RUST_BACKTRACE:-1}