From a133feecdea4a1f20e0e4de040bfc03882a204c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20M=C3=BCller?= Date: Wed, 17 Apr 2024 14:30:37 +0200 Subject: [PATCH] Revert "Add global_loglevel to General::init()" --- interface/cuvis.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/cuvis.hpp b/interface/cuvis.hpp index e83bbb7..3a4b54b 100644 --- a/interface/cuvis.hpp +++ b/interface/cuvis.hpp @@ -692,7 +692,7 @@ namespace cuvis /** * @copydoc cuvis_init */ - static void init(std::string const& settings_path, int global_loglevel = 4); + static void init(std::string const& settings_path); /** * @copydoc cuvis_register_event_callback */ @@ -2387,9 +2387,9 @@ namespace cuvis return std::string(version); } - inline void General::init(std::string const& settings_path, int global_loglevel) + inline void General::init(std::string const& settings_path) { - chk(cuvis_init(settings_path.c_str(), global_loglevel)); + chk(cuvis_init(settings_path.c_str())); return; }