Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/ethrex/ethrex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ static ALLOC: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;

fn log_global_allocator() {
if cfg!(all(feature = "jemalloc", not(target_env = "msvc"))) {
tracing::info!("Global allocator: jemalloc (tikv-jemallocator)");
tracing::debug!("Global allocator: jemalloc (tikv-jemallocator)");
} else {
tracing::info!("Global allocator: system (std::alloc::System)");
tracing::debug!("Global allocator: system (std::alloc::System)");
}
}

Expand Down
Loading
Loading