Skip to content

Commit 602099a

Browse files
committed
Remove extraneous logging.
1 parent 1b4725a commit 602099a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -236,23 +236,19 @@ if(FIREBASE_CPP_USE_PRIOR_GRADLE_BUILD)
236236
# In case there are multiple matches, take the one with the newest timestamp.
237237
set(newest_timestamp 0)
238238
foreach(possible_prev_build_dir IN LISTS possible_prev_build_dirs)
239-
message("CONSIDERING ${possible_prev_build_dir}")
240239
if(IS_DIRECTORY ${possible_prev_build_dir})
241240
if(EXISTS "${possible_prev_build_dir}/${header_to_scan_for}")
242241
# Check if it's newer than any other files.
243-
message("FOUND ${possible_prev_build_dir}/${header_to_scan_for}")
244242
file(TIMESTAMP "${possible_prev_build_dir}/${header_to_scan_for}" timestamp "%s")
245-
message("GOT TIMESTAMP: ${timestamp}")
246243
if(${timestamp} GREATER ${newest_timestamp})
247-
message("USING ${possible_prev_build_dir}")
248244
set(APP_BINARY_DIR ${possible_prev_build_dir})
249245
set(newest_timestamp ${timestamp})
250246
endif()
251247
endif()
252248
endif()
253249
endforeach()
254250
if (IS_DIRECTORY "${APP_BINARY_DIR}")
255-
message("Found previous Firebase App build in ${APP_BINARY_DIR}")
251+
message(STATUS "Found previous Firebase App build in ${APP_BINARY_DIR}")
256252
else()
257253
message(FATAL_ERROR "Could not find previous Firebase App build under ${prev_build_path}")
258254
endif()

0 commit comments

Comments
 (0)