diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 725bcd7963eb..6473afcbc1f0 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -157,31 +157,6 @@ def build_code_next BUILD_CODE_FORMATTER.build_code(version: build_code_next) end -######################################################################## -# Group buildkite logs by action -######################################################################## - -# A module that defines methods to be used as overrides to `Fastlane::Actions` -# module methods. -module FastlaneActionLogGroup - def print_group(action_name) - return if %w[is_ci].include?(action_name) - - puts "~~~ :fastlane: #{ENV.fetch('FASTLANE_LANE_NAME', '[root]')} >> #{action_name}" - end - - def execute_action(action_name) - print_group(action_name) - super - end -end - -if ENV.key?('BUILDKITE') - Fastlane::Actions.singleton_class.class_eval do - prepend FastlaneActionLogGroup - end -end - ######################################################################## # Imports domain-specific lanes ########################################################################