diff --git a/CMakeLists.txt b/CMakeLists.txt index 79f29bd4..b8b06522 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required (VERSION 3.12) ######### cmake_policy( SET CMP0048 NEW ) # version in project() -project( Dripline VERSION 2.10.0 ) +project( Dripline VERSION 2.10.1 ) list( APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/scarab/cmake ) @@ -33,8 +33,8 @@ set ( Dripline_PYTHON_THROW_REPLY_KEYWORD "ThrowReply" CACHE STRING "Keyword use set( Dripline_MAX_PAYLOAD_SIZE "10000" CACHE STRING "Maximum payload size (bytes)" ) -# always use C++17 -set( CMAKE_CXX_STANDARD 17 ) +# always use C++17 or higher +set_to_max( CMAKE_CXX_STANDARD 17 ) # This can be used to debug memory issues #add_compile_options(-fsanitize=address) diff --git a/library/service.cc b/library/service.cc index f50ef52e..d450b9b2 100644 --- a/library/service.cc +++ b/library/service.cc @@ -45,7 +45,6 @@ namespace dripline f_async_children(), f_broadcast_key( a_config.get_value( "broadcast_key", "broadcast" ) ) { - LWARN( dlog, "Service (cpp) constructor" ); LDEBUG( dlog, "Service (cpp) created with config:\n" << a_config ); // get more values from the config // default of f_listen_timeout_ms is in the listener class diff --git a/scarab b/scarab index a68aec17..32b53bc2 160000 --- a/scarab +++ b/scarab @@ -1 +1 @@ -Subproject commit a68aec17f1c7090b4a7fc6df0fb9881b3103804c +Subproject commit 32b53bc277ff02e9aa501b0d2ed7a2790ab76155