mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-13 13:31:19 +00:00
12 lines
240 B
Ruby
12 lines
240 B
Ruby
module Gitlab
|
|
class GitLogger < Gitlab::Logger
|
|
def self.file_name_noext
|
|
'githost'
|
|
end
|
|
|
|
def format_message(severity, timestamp, progname, msg)
|
|
"#{timestamp.to_s(:long)} -> #{severity} -> #{msg}\n"
|
|
end
|
|
end
|
|
end
|