Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/projects/clusters/applications_controller.rb')
-rw-r--r--app/controllers/projects/clusters/applications_controller.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/projects/clusters/applications_controller.rb b/app/controllers/projects/clusters/applications_controller.rb
index 4d758402850..629e3d40c34 100644
--- a/app/controllers/projects/clusters/applications_controller.rb
+++ b/app/controllers/projects/clusters/applications_controller.rb
@@ -20,7 +20,8 @@ class Projects::Clusters::ApplicationsController < Projects::ApplicationControll
Clusters::Applications::ScheduleInstallationService.new(project, current_user).execute(application)
head :no_content
- rescue StandardError
+ rescue StandardError => e
+ Rails.logger.error("Request to install a cluster application failed: #{e.message}")
head :bad_request
end