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:
authorNick Thomas <nick@gitlab.com>2018-02-19 20:18:41 +0300
committerNick Thomas <nick@gitlab.com>2018-02-23 15:22:29 +0300
commitd600a6ef7117a7c113cbdf5394e04d8938810b9b (patch)
tree0bc3955d75291f9fc5c479ed0e8541dcd6b721f0
parentee68bd9771f671ce7c258a8f5441125f1a9c2d53 (diff)
Log pages domain verification changes to application.log
-rw-r--r--app/services/verify_pages_domain_service.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/services/verify_pages_domain_service.rb b/app/services/verify_pages_domain_service.rb
index 40fc42f2690..86166047302 100644
--- a/app/services/verify_pages_domain_service.rb
+++ b/app/services/verify_pages_domain_service.rb
@@ -101,6 +101,7 @@ class VerifyPagesDomainService < BaseService
def notify(type)
return unless verification_enabled?
+ Gitlab::AppLogger.info("Pages domain '#{domain.domain}' changed state to '#{type}'")
notification_service.public_send("pages_domain_#{type}", domain) # rubocop:disable GitlabSecurity/PublicSend
end
end