mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 13:46:11 +10:00
This reverts commit957e849f41, reversing changes made to6b9dbe9f5a. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
14 lines
262 B
Ruby
14 lines
262 B
Ruby
module Gitlab
|
|
module Satellite
|
|
class Logger < Gitlab::Logger
|
|
def self.file_name
|
|
'satellites.log'
|
|
end
|
|
|
|
def format_message(severity, timestamp, progname, msg)
|
|
"#{timestamp.to_s(:long)}: #{msg}\n"
|
|
end
|
|
end
|
|
end
|
|
end
|