From 707067ab4d906f80f321677ca0182207a17718fc Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Tue, 1 Oct 2024 18:13:28 +0200 Subject: [PATCH] chore: limit tracing logs to debug by default (#11377) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4d26e7872ed1..9274db1c55dd 100644 --- a/Makefile +++ b/Makefile @@ -13,9 +13,9 @@ CARGO_TARGET_DIR ?= target # List of features to use when building. Can be overridden via the environment. # No jemalloc on Windows ifeq ($(OS),Windows_NT) - FEATURES ?= asm-keccak + FEATURES ?= asm-keccak min-debug-logs else - FEATURES ?= jemalloc asm-keccak + FEATURES ?= jemalloc asm-keccak min-debug-logs endif # Cargo profile for builds. Default is for local builds, CI uses an override.