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.
# 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.