Skip to content

Commit c9aee10

Browse files
committed
Add logging per Kai's suggestion
1 parent d7856fd commit c9aee10

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/fastlane/plugin/firebase_app_distribution/helper/firebase_app_distribution_helper.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,13 @@ def string_to_array(string, delimiter = /[,\n]/)
4040
def app_id_from_params(params)
4141
plist_path = params[:googleservice_info_plist_path]
4242
if params[:app]
43+
UI.message("Using app ID from 'app' parameter")
4344
app_id = params[:app]
4445
elsif xcode_archive_path
46+
UI.message("Using app ID from the GoogleService-Info.plist file located using the 'googleservice_info_plist_path' parameter, relative to the archive path: #{xcode_archive_path}")
4547
app_id = get_ios_app_id_from_archive_plist(xcode_archive_path, plist_path)
4648
elsif plist_path
49+
UI.message("Using app ID from the GoogleService-Info.plist file located using the 'googleservice_info_plist_path' parameter directly since no archive path was found")
4750
app_id = get_ios_app_id_from_plist(plist_path)
4851
end
4952
if app_id.nil?

0 commit comments

Comments
 (0)