From 4bc450635dde93c001f58e6aa889019fd9847d4f Mon Sep 17 00:00:00 2001 From: Odysseas Georgoudis Date: Thu, 15 Jun 2023 21:51:18 +0100 Subject: [PATCH] Enhance ubnounded queue reallocation message --- quill/include/quill/detail/backend/BackendWorker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quill/include/quill/detail/backend/BackendWorker.h b/quill/include/quill/detail/backend/BackendWorker.h index 3c8deb74..4fcfa7cc 100644 --- a/quill/include/quill/detail/backend/BackendWorker.h +++ b/quill/include/quill/detail/backend/BackendWorker.h @@ -899,7 +899,7 @@ std::byte* BackendWorker::_read_unbounded_queue(UnboundedQueue& queue, ThreadCon // we switched to a new here, and we also notify the user of the allocation via the // notification_handler _notification_handler(fmt::format( - "{} Quill INFO: A new SPSC queue has been allocated with a new capacity of {} bytes, and " + "{} Quill INFO: A new SPSC queue has been allocated with a new capacity of {} bytes and " "a previous capacity of {} bytes from thread {}", ts, allocation_info->first, allocation_info->second, thread_context->thread_id())); }