Is there a way to pass the verbose flag for Fastlane Pilot in a lane?

Viewed 1369

I'm debugging my fastlane actions and lanes to understand if and how to make it faster, but have not found a way to pass the verbose flag to pilot action.

2 Answers

Yes, you can pass verbose: true to the pilot action.

For example

pilot(
    username: my_user_name,
    app_identifier: app_identifier,
    ipa: "path/to/ipa_name.ipa",
    verbose: true
)
Related