From ba423c0538f42f1edab9367818654d90c89bcdf2 Mon Sep 17 00:00:00 2001
From: Mateus Sanches Moura <msanches@iri.upc.edu>
Date: Tue, 11 Jun 2024 19:35:50 +0200
Subject: [PATCH] Modify logging.h to support newer version of spdlog

---
 include/core/utils/logging.h | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/include/core/utils/logging.h b/include/core/utils/logging.h
index df58dfd1f..2028d6b41 100644
--- a/include/core/utils/logging.h
+++ b/include/core/utils/logging.h
@@ -34,8 +34,10 @@
 
 // spdlog include
 #include "spdlog/spdlog.h"
+#include "spdlog/async.h"
 // enable the use of ostream operator<<
-#include "spdlog/fmt/bundled/ostream.h"
+#include "spdlog/fmt/ostr.h"
+#include "spdlog/sinks/stdout_color_sinks.h"
 
 // Wolf includes
 #include "core/utils/singleton.h"
@@ -125,7 +127,7 @@ inline Logger::Logger(const std::string& name) :
 
   // Enable asynchronous logging
   // Queue size must be a power of 2
-  spdlog::set_async_mode(4096);
+  spdlog::init_thread_pool(4096, 1);
 
   if (log_name_ == __INTERNAL_WOLF_MAIN_LOGGER_NAME_)
     // Logging pattern is :
@@ -154,7 +156,7 @@ inline Logger::Logger(std::string&& name) :
 
   // Enable asynchronous logging
   // Queue size must be a power of 2
-  spdlog::set_async_mode(4096);
+  spdlog::init_thread_pool(4096, 1);
 
   if (log_name_ == __INTERNAL_WOLF_MAIN_LOGGER_NAME_)
     // Logging pattern is :
@@ -210,7 +212,7 @@ inline bool Logger::set_async_queue(const std::size_t q_size)
 {
   bool p2 = q_size%2 == 0;
 
-  if (p2) spdlog::set_async_mode(q_size);
+  if (p2) spdlog::init_thread_pool(q_size, 1);
 
   return q_size;
 }
-- 
GitLab