Skip to content

Commit 752bb9e

Browse files
committed
Pin logger_system to commit with make_error() support
Updated LoggerSystem FetchContent to use specific commit 0ba67a54 which includes the fix to use make_error() instead of the removed error() function. This ensures logger_system is compatible with the updated common_system where error() was renamed to make_error() to fix namespace conflicts. Changes: - GIT_TAG main → 0ba67a543baa8913576fd682b962e9bde55fdf40 - GIT_SHALLOW TRUE → FALSE (required for specific commits)
1 parent ee31562 commit 752bb9e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,12 @@ if(MESSAGING_USE_EXTERNAL_SYSTEMS)
266266
)
267267

268268
# Logger System
269+
# Using specific commit to ensure latest fixes are used (make_error update)
269270
FetchContent_Declare(
270271
LoggerSystem
271272
GIT_REPOSITORY https://github.com/kcenon/logger_system.git
272-
GIT_TAG main
273-
GIT_SHALLOW TRUE
273+
GIT_TAG 0ba67a543baa8913576fd682b962e9bde55fdf40
274+
GIT_SHALLOW FALSE # Need full history to checkout specific commit
274275
)
275276

276277
# Monitoring System

0 commit comments

Comments
 (0)