Browse Source

Be quieter when Release build.

Steve Thielemann 4 years ago
parent
commit
74c8cf4b73
2 changed files with 7 additions and 3 deletions
  1. 5 1
      CMakeLists.txt
  2. 2 2
      hharry.cpp

+ 5 - 1
CMakeLists.txt

@@ -179,8 +179,12 @@ target_link_libraries(hharry util)
 target_link_libraries(hharry zf_log)
 target_compile_definitions(hharry PUBLIC HHVERSION="${GIT_DESCRIBE_VERSION}")
 
-# target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_INFO)
+if((CMAKE_BUILD_TYPE STREQUAL Release) OR (CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo))
+target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_INFO)
+else()
 target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_VERBOSE)
+endif()
+
 if(DISABLE_BUFFER_DEBUG)
 target_compile_definitions(hharry PUBLIC NO_BUFFER_DEBUG=1)
 endif()

+ 2 - 2
hharry.cpp

@@ -664,9 +664,9 @@ int main(int argc, char *argv[]) {
         // e escreva no bc
         if (!zmodem) {
           if (r > 50) {
-            ZF_LOGI("<< %d bytes", r);
+            ZF_LOGV("<< %d bytes", r);
           } else {
-            ZF_LOGI("<< %s", repr(input));
+            ZF_LOGV("<< %s", repr(input));
           }
         }