Skip to content

Commit 0fc99c9

Browse files
authored
Merge pull request #45 from bemanproject/enolan_telemetrymessages1
Adjust CMake messages for build telemetry
2 parents 78c9c0f + 53a1500 commit 0fc99c9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

cmake/BuildTelemetryConfig.cmake

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ set(BUILD_TELEMETRY_DIR ${CMAKE_CURRENT_LIST_DIR})
44

55
function(configure_build_telemetry)
66
if(NOT BUILD_TELEMETRY_CONFIGURATION)
7-
message(STATUS "Configuring Build Telemetry")
8-
97
# Check if the CMake version is at least 4.3
108
if(CMAKE_VERSION VERSION_LESS "4.3")
119
message(
12-
WARNING
10+
STATUS
1311
"CMake version is less than 4.3, configuring cmake_instrumentation is unavailable."
1412
)
1513
return()
14+
else()
15+
message(STATUS "Configuring Build Telemetry")
1616
endif()
1717

1818
# Telemetry query
@@ -25,7 +25,7 @@ function(configure_build_telemetry)
2525
CALLBACK ${BUILD_TELEMETRY_DIR}/telemetry.sh
2626
)
2727
message(
28-
WARNING
28+
DEBUG
2929
"using callback script ${BUILD_TELEMETRY_DIR}/telemetry.sh"
3030
)
3131

0 commit comments

Comments
 (0)