backend: log no allocator errors

This commit is contained in:
Vaxry 2025-02-11 18:27:39 +00:00
parent a3dda0d10c
commit f239e5aadd

View file

@ -155,8 +155,10 @@ bool Aquamarine::CBackend::start() {
}
}
if (!primaryAllocator)
if (!primaryAllocator) {
log(AQ_LOG_CRITICAL, "Cannot open backend: no allocator available");
return false;
}
ready = true;
for (auto const& b : implementations) {