summaryrefslogtreecommitdiff
path: root/lib/feature
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-12-02 03:09:38 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-02 03:09:38 +0000
commit408af4d5cf3a3893f8431d4d28821c766ab92bec (patch)
tree481b4b471e09a2de078e5aae3982a53a2a51bb97 /lib/feature
parentf3506a4deee10c8b0e3c57ed2019d1df9c521258 (diff)
downloadgitlab-ce-408af4d5cf3a3893f8431d4d28821c766ab92bec.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/feature')
-rw-r--r--lib/feature/logger.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/feature/logger.rb b/lib/feature/logger.rb
new file mode 100644
index 00000000000..784a619e182
--- /dev/null
+++ b/lib/feature/logger.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class Feature
+ class Logger < ::Gitlab::JsonLogger
+ def self.file_name_noext
+ 'features_json'
+ end
+ end
+end