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:
parent
2b81d845ea
commit
ff60260464
|
@ -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}
|
||||
|
||||
|
|
Loading…
Reference in New Issue