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:
authorStan Hu <stanhu@gmail.com>2019-08-08 23:30:37 +0300
committerStan Hu <stanhu@gmail.com>2019-08-08 23:39:11 +0300
commit0324028a3f4d58e2001aae69ac343ee645f07e9a (patch)
tree14de03ba7cdd9676a68d9efc11a9c396e482549c /lib/gitlab/git_logger.rb
parent0e456465d16d23e68096231cf9e45ea1064e9294 (diff)
Rename githost.log -> git_json.log
The githost.log name was often confused with GitHost.io. Rename this to git_json.log to make it clear it's coming from Git and that it's JSON data.
Diffstat (limited to 'lib/gitlab/git_logger.rb')
-rw-r--r--lib/gitlab/git_logger.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/git_logger.rb b/lib/gitlab/git_logger.rb
index ded5349be01..545451f0dc9 100644
--- a/lib/gitlab/git_logger.rb
+++ b/lib/gitlab/git_logger.rb
@@ -3,7 +3,7 @@
module Gitlab
class GitLogger < JsonLogger
def self.file_name_noext
- 'githost'
+ 'git_json'
end
end
end