From ff602604644fdf8c693465912e0a9d50cb95a83e Mon Sep 17 00:00:00 2001 From: Gustavo Valverde Date: Tue, 29 Aug 2023 08:45:26 +0100 Subject: [PATCH] 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. --- docker/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 46beb2bd..e16cac66 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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}