chore: limit tracing logs to debug by default (#11377)

This commit is contained in:
DaniPopes
2024-10-01 18:13:28 +02:00
committed by GitHub
parent 9c041d252b
commit 707067ab4d

View File

@ -13,9 +13,9 @@ CARGO_TARGET_DIR ?= target
# List of features to use when building. Can be overridden via the environment. # List of features to use when building. Can be overridden via the environment.
# No jemalloc on Windows # No jemalloc on Windows
ifeq ($(OS),Windows_NT) ifeq ($(OS),Windows_NT)
FEATURES ?= asm-keccak FEATURES ?= asm-keccak min-debug-logs
else else
FEATURES ?= jemalloc asm-keccak FEATURES ?= jemalloc asm-keccak min-debug-logs
endif endif
# Cargo profile for builds. Default is for local builds, CI uses an override. # Cargo profile for builds. Default is for local builds, CI uses an override.