From 3cdeed6b0370c2b1af72cd9b8b904ca27750a2b2 Mon Sep 17 00:00:00 2001 From: Sylvain Chapeland Date: Mon, 9 Sep 2019 16:00:09 +0200 Subject: [PATCH] added InfoLoggerErrorCodes.h to reserve specific ranges for each o2 module --- CMakeLists.txt | 2 +- doc/releaseNotes.md | 3 +++ test/testInfoLogger.cxx | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1d4086a..399673a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -382,7 +382,7 @@ foreach (f ${TEST_SRCS}) message ("${exe}") add_executable(${exe} ${f} ${INFOLOGGER_LIB_OBJECTS} $) target_link_libraries(${exe} InfoLogger) - target_include_directories(${exe} PRIVATE ${COMMON_STANDALONE_INCLUDE_DIRS}) + target_include_directories(${exe} PRIVATE ${COMMON_STANDALONE_INCLUDE_DIRS} src) add_test(NAME ${test_name} COMMAND ${exe}) endforeach() diff --git a/doc/releaseNotes.md b/doc/releaseNotes.md index 567c6c4..169f62c 100644 --- a/doc/releaseNotes.md +++ b/doc/releaseNotes.md @@ -23,3 +23,6 @@ This file describes the main feature changes for each InfoLogger released versio ## v1.3.5 - 06/09/2019 - added process stdout/stderr capture and redirection to infologger - added infoLoggerTester to check full message pipeline from client to server and database. + +## next version +- added header file InfoLoggerErrorCodes.h to reference centrally the definition of error code ranges reserved specifically for each o2 module, and possibly the individual description / documentation of each error code. diff --git a/test/testInfoLogger.cxx b/test/testInfoLogger.cxx index 939b2d7..520e22e 100644 --- a/test/testInfoLogger.cxx +++ b/test/testInfoLogger.cxx @@ -15,6 +15,7 @@ #include #include +#include using namespace AliceO2::InfoLogger;