1CMAKE_MESSAGE_LOG_LEVEL 2----------------------- 3 4.. versionadded:: 3.17 5 6When set, this variable specifies the logging level used by the 7:command:`message` command. Valid values are the same as those for the 8``--log-level`` command line option of the :manual:`cmake(1)` program. 9If this variable is set and the ``--log-level`` command line option is 10given, the command line option takes precedence. 11 12The main advantage to using this variable is to make a log level persist 13between CMake runs. Setting it as a cache variable will ensure that 14subsequent CMake runs will continue to use the chosen log level. 15 16Projects should not set this variable, it is intended for users so that 17they may control the log level according to their own needs. 18