diff --git a/utils/logalloc.cc b/utils/logalloc.cc index 229dddd4df..b4317a6ea0 100644 --- a/utils/logalloc.cc +++ b/utils/logalloc.cc @@ -2924,10 +2924,10 @@ void allocating_section::on_alloc_failure(logalloc::region& r) { r.allocator().invalidate_references(); if (r.get_tracker().get_impl().segment_pool().allocation_failure_flag()) { _lsa_reserve *= 2; - llogger.debug("LSA allocation failure, increasing reserve in section {} to {} segments", fmt::ptr(this), _lsa_reserve); + llogger.info("LSA allocation failure, increasing reserve in section {} to {} segments; trace: {}", fmt::ptr(this), _lsa_reserve, current_backtrace()); } else { _std_reserve *= 2; - llogger.debug("Standard allocator failure, increasing head-room in section {} to {} [B]", fmt::ptr(this), _std_reserve); + llogger.info("Standard allocator failure, increasing head-room in section {} to {} [B]; trace: {}", fmt::ptr(this), _std_reserve, current_backtrace()); } reserve(r.get_tracker().get_impl()); }