diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-05-28 15:28:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-28 15:28:53 +0200 |
commit | 8206954a67b96702619ba70d011b454696a608ef (patch) | |
tree | 6cc6a2e98d6f24cf112beee0d56d3eb1d2bddb93 /src | |
parent | 03a2c5b77200845c30f62250f26e83ff7fbc24b3 (diff) | |
download | rneovim-8206954a67b96702619ba70d011b454696a608ef.tar.gz rneovim-8206954a67b96702619ba70d011b454696a608ef.tar.bz2 rneovim-8206954a67b96702619ba70d011b454696a608ef.zip |
build: remove LOG_DEBUG option
Its usecase is too specific to warrant an option. The same effect can be
achieved by passing `-DCMAKE_C_FLAGS=-DNVIM_LOG_DEBUG` in the command
line when building neovim.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/CMakeLists.txt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 47f32abc07..222b283a5d 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -394,9 +394,6 @@ endif() if($ENV{CI}) # Don't debug log on CI, it gets too verbose in the main build log. # TODO(bfredl): debug log level also exposes some errors with EXITFREE in ASAN build. - set(LOG_DEBUG FALSE) -elseif(LOG_DEBUG) - target_compile_definitions(nvim PRIVATE NVIM_LOG_DEBUG) else() # Minimize logging for release-type builds. target_compile_definitions(nvim PRIVATE $<$<CONFIG:Debug>:NVIM_LOG_DEBUG>) |